

function bluring(){ 
if(!event.srcElement) return;
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus(); 
} 

document.onfocusin=bluring;   


function swf_func(id_name,swf_name,width,height){ 
document.writeln("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='"+width+"' height='"+height+"' id='"+id_name+"' align='middle'>");
document.writeln("<param name='allowScriptAccess' value='always'>");
document.writeln("<param name='movie' value='"+swf_name+"'>");
document.writeln("<param name='quality' value='high'>");
document.writeln("<param name='bgcolor' value='#ffffff'>");
document.writeln("<param name='wmode' Value='transparent'>");
document.writeln("<embed src="+swf_name+" quality=high type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash\" width="+width+" height="+height+"></embed>");
document.writeln("</object>");
}


function openPop( filesrc, filename ){
	
	var popWidth = window.screen.width;
	var popHeight = window.screen.height-60;
	window.open( filesrc, filename,'width='+popWidth+',height='+popHeight+',top=0,left=0,toolbar=0,location=no,directories=0,status=0,menubar=0,scrollbars=0, resizable=0');

}


function showNotice()
{
        var url ="http://www.privatecurve.com/disny/notice_list.asp";
        var obj = document.all["Notice"];
        
        if(!url) {return false;}
        if(!obj) {return false;}
        
        hideNotice();

        obj.width =316;
        obj.height = 300;
        obj.style.top = 315;
        obj.style.left = 0;

        obj.src=url;
        //obj.style.display="block";

        setTimeout("shownot()",10); 

}

function shownot() {
    var obj = document.all["Notice"];
    obj.style.display="block"
}

function hideNotice()
{
        var obj = document.all["Notice"];
        if(!obj) {return false;}
        obj.blur();
        obj.src = "about:blank";
        obj.style.display="none";
}

//-->

