<!--
function flashwrite(url,w,h,id,bg,win){

    var flashStr=
    "<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='"+w+"' height='"+h+"' id='"+id+"' align='middle'>"+
    "<param name='movie' value='"+url+"' />"+
    "<param name='wmode' value='"+win+"' />"+
    "<param name='menu' value='false' />"+
    "<param name='quality' value='high' />"+
    "<param name='bgcolor' value='"+bg+"' />"+
    "<embed src='"+url+"' wmode='"+win+"' menu='false' quality='high' bgcolor='"+bg+"' width='"+w+"' height='"+h+"' name='"+id+"' align='middle' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />"+
    "</object>";

    document.write(flashStr);
}

function openwin(url,name,width,height,left,top,scrollbars,resizable) {
	panjoo=window.open(url,name,'width='+width+',height='+height+',left='+left+',top='+top+',scrollbars='+scrollbars+',resizable='+resizable);
	panjoo.focus();
}

function centeropen(url,n,w,h,s) {

x = (window.screen.availWidth - document.body.offsetWidth ) / 2;
y = (window.screen.availHeight - document.body.offsetHeight ) / 2;


   var win = window.open(url,"order","width=" + x + ",height=" + h + ",scrollbars=no");
//  window.moveTo( x, y );
   win.focus();
}

//ÆË¾÷ À§Ä¡ Á¤°¡¿îµ¥ Á¶Àý
function popUplocation(URL,dw,dh,sc)
{
	sw = screen.availWidth - 10;
	sh = screen.availHeight - 36;

	if ( dw > sw ) dw = sw;
	if ( dh > sh ) dh = sh;

	x = (sw - dw) / 2;
	y = (sh - dh) / 2;

	if (x < 0) x = 0; 
	if (y < 0) y = 0;

//	window.open( URL, 'pop','width='+dw+', height='+dh+', left='+x+', top='+y);
	var pop = window.open( URL, 'pop','width='+dw+', height='+dh+', left='+x+', top='+y+', scrollbars='+sc+'');
	pop.focus();
}
-->

