function setSwf(arg1, arg2, arg3, arg4){
  document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'");
  document.write("        codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='"+arg2+"' height='"+arg3+"'>");
  document.write("<param name='movie' value='"+arg1+"'>");
  document.write("<param name='quality' value='high'>");
  if(arg4) document.write("<param name='wmode' value='transparent'>");
  document.write("<embed src='"+arg1+"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+arg2+"' height='"+arg3+"'></embed>");
  document.write("</object>");
}


// ÀÚµ¿ blur();
function bluring(){ 
	if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus(); 
} 
//document.onfocusin=bluring; 


function isCorrectEmail(email) {
	return !/\w{1,}[@][\w\-]{1,}([.]([\w\-]{1,})){1,3}$/.test(email)?false: true;
}

function openPopup(url,name,w,h,scroll) {
     var Top  = (screen.height-h)/2;
     var Left = (screen.width-w)/2;
	 if(!scroll) scroll="no";
     var pop = "width="+w+",height="+h+",top="+Top+",left="+Left+", scrollbars="+scroll;
     window.open(url,name,pop) ;
}