
function Open(theURL, winName)
{
    theWindow = window.open(theURL,winName,"width=690,height=630,menubar=no,toolbar=no,status=no,resizable=no,scrollbars=no,scrolling=no")
    theWindow.window.focus();
    theWindow.window.name = "special";
}

function flashwindow( url, name, option ){
	window.open( url, name, option );
}