//////////////////////////////////////////////////////////////
// ¿ø°ÝÁ¦¾î Ã¢ ¸µÅ© ÀÚ¹Ù½ºÅ©¸³Æ® ÇÔ¼ö
//////////////////////////////////////////////////////////////
var m_ww = 0;
var m_hh =0;

function remote_view1(cp, at, na, tl){
		var ww = 854 ;
		var hh = 620 ;

		if (m_ww != 0 && m_hh != 00)
		{
			ww = m_ww;
			hh = m_hh;
		}
		var left = (screen.availWidth - ww) / 2;
		var top = (screen.availHeight - hh) / 2;

		var features = "Width=" + ww + ", Height=" + hh + ", Left=" + left + ", Top=" + top + ", scrollbars=no;" ;

		document.form_call1.cpcode.value = cp;		// È¸»çÄÚµå
		document.form_call1.autostart.value = at;		// ÀÚµ¿Á¢¼ö
		document.form_call1.name.value = na;			// °í°´ÀÌ¸§
		document.form_call1.tel.value = tl;				// °í°´¿¬¶ôÃ³
		document.form_call1.action = "http://www.aswp.co.kr/client/index.aspx" ;
		window.open(document.form_call1.action , "remote", features); 
		document.form_call1.target = "remote" ;
		document.form_call1.submit() ;				
}

// Enable Window Size Move
function remote_view_size(cp, at, na, tl, w, h)
{
	m_ww = w;
	m_hh = h;
	remote_view1(cp, at, na, tl);
}