
function view(what) {
var imgwin = window.open("",'WIN','scrollbars=yes,status=no,toolbar=no,resizable=0,location=no,menu=no,width=30,height=30,scrollbars=no');
imgwin.focus();
imgwin.document.open();
imgwin.document.write("<html>\n");
imgwin.document.write("<head>\n");

imgwin.document.write("<sc"+"ript>\n");

imgwin.document.write("function closeWin(){\n");
imgwin.document.write("window.close();\n");
imgwin.document.write("}\n");

imgwin.document.write("function resize() {\n");
imgwin.document.write("pic = document.il;\n");
//imgwin.document.write("alert(eval(pic).height);\n");
imgwin.document.write("if (eval(pic).height) { var name = navigator.appName\n");
imgwin.document.write("  if (name == 'Microsoft Internet Explorer') { myHeight = eval(pic).height + 50; myWidth = eval(pic).width + 12;\n");
imgwin.document.write("  } else { myHeight = eval(pic).height + 9; myWidth = eval(pic).width; }\n");
imgwin.document.write("   if( myHeight > 600 ){ \n");
imgwin.document.write("    kwak = myHeight/600; \n");
imgwin.document.write("    myWidth = myWidth / kwak \n");
imgwin.document.write("    myHeight=600;\n");
imgwin.document.write("    pic.style.height=myHeight-35; \n");
imgwin.document.write("    pic.style.width=myWidth-10; }\n");
imgwin.document.write("   if( myWidth > 800 ){ \n");
imgwin.document.write("    kwak = myWidth/800; \n");
imgwin.document.write("    myHeight = myHeight / kwak \n");
imgwin.document.write("    myWidth=800;\n");
imgwin.document.write("    pic.style.height=myHeight-35; ");
imgwin.document.write("    pic.style.width=myWidth-10; }\n");
imgwin.document.write("  clearTimeout();\n");
imgwin.document.write("  var height = screen.height;\n");
imgwin.document.write("  var width = screen.width;\n");
imgwin.document.write("  var leftpos = width / 2 - myWidth / 2;\n");
imgwin.document.write("  var toppos = height / 2 - myHeight / 2; \n");
imgwin.document.write("  self.moveTo(leftpos, toppos);\n");
imgwin.document.write("  self.resizeTo(myWidth, myHeight+60);\n");
imgwin.document.write("}else setTimeOut(resize(), 100);}\n");
imgwin.document.write("</sc"+"ript>\n");

imgwin.document.write("</head>\n");
imgwin.document.write('<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0" bgcolor="#FFFFFF">\n');

imgwin.document.write("<a href='javascript:closeWin()' onfocus='this.blur()' title='ÀÌ¹ÌÁö¸¦ Å¬¸¯ÇÏ½Ã¸é Ã¢ÀÌ ´ÝÈü´Ï´Ù.'>\n");
imgwin.document.write("<img border=0 src="+what+" xwidth=100 xheight=9 name=il onload='resize();'>\n");
imgwin.document.write("</a>\n");
imgwin.document.write("<center><a href='#1' onClick=\"document.all.cooponimg.style.display='';print()\"><img id='cooponimg' src='img/print_button.gif' border='0' alt='print' style='margin-top:7px;'></div></a>\n");
imgwin.document.write("</body>\n");
imgwin.document.close();
}


function coupon_add()
{
	one_form = document.getElementById('coupon_one_form').innerHTML;
	total_form = document.getElementById('coupon_total_form').innerHTML;

	total_form += one_form;
	document.getElementById('coupon_total_form').innerHTML = total_form;
}


function coupon_change(sel, coupon_secure)
{
	array_name = "Coupons_"+sel.value;
	Coupon = eval(array_name);

	if ( coupon_secure == 'y' )
	{
		document.getElementById('coupon_sms').innerHTML		= Coupon["coupon_sms"];
		document.getElementById('coupon_number').value		= document.getElementById('select_coupon').value;
	}

	document.getElementById('coupon_text').innerHTML	= Coupon["coupon_text"];
	document.getElementById('coupon_date').innerHTML	= Coupon["coupon_date"];
	document.getElementById('coupon_notice').innerHTML	= Coupon["coupon_notice"];

	//alert(Coupon["coupon_text"]);
	//alert(Coupon["coupon_date"]);
	//alert(Coupon["coupon_notice"]);




	//alert(array_name);
}

function coupon_sms_send()
{
	obj = document.sms_form;
	obj.coupon_msg.value = document.getElementById('coupon_sms').innerHTML;
	obj.submit();
}
