/*
WinOpen(src,width,height)
----------------------------------------------------*/
function WinOpen(src,width,height){
   if(! WinOpen.arguments[1]) width  = 500;
   if(! WinOpen.arguments[2]) height = 500;
   var wo = window.open(src,"_blank","toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height);
   wo.window.focus();
}

/*
WinFixOpen(src)
----------------------------------------------------*/
function WinFixOpen(src){
   var wo = window.open(src,"_blank","toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=670,height=560");
   wo.window.focus();
}

/*
WinClose()
----------------------------------------------------*/
function WinClose(){
   self.window.close();
}

/*
Preload
----------------------------------------------------*/
function topflash(filepath, width, height, bgcolor){
	document.write('<div style="margin-bottom:10px;">');
	document.write('<object data="' + filepath + '" width="' + width + '" height="' + height + '" bgcolor="' + bgcolor + '" type="application/x-shockwave-flash">');
	document.write('<param name="movie" value="' + filepath + '" />');
	document.write('<param name="bgcolor" value="' + bgcolor + '" />');
	document.write('</object>');
	document.write('</div>');
}
