//////////////////////////////////////////////////////////////
// ¿ø°ÝÁ¦¾î Ã¢ ¸µÅ© ÀÚ¹Ù½ºÅ©¸³Æ® ÇÔ¼ö
//////////////////////////////////////////////////////////////
function remote_view1(cp, at, na, tl){
		var ww = 730 ;
		var hh = 620 ;
		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://2007.asw.co.kr/client/index.jsp" ;
		window.open(document.form_call1.action , "remote", features); 
		document.form_call1.target = "remote" ;
		document.form_call1.submit() ;	
	}
