//====== Site Specific Javascript =====
function openSMSWin() {
	var url = "/myphoto_view.html?seq=" + seq;
	ww = parseInt(screen.width / 3 * 2);
	hh = parseInt(screen.height / 3 * 2);
	hwin = window.open(url, "__ORGVIEW__", "width="+ww+",height="+hh+",scrollbars=1,resizable=1");
	hwin.focus();
}

function OpenFormMail(formtype) {
	var url = "/form_" + formtype + ".html?pop=Popup";
	hFormWin = window.open(url, "__DKFORMWIN__", dkCenterWindow(550,410) + ",scrollbars=0,resizable=0");
	hFormWin.focus();
}

function OpenWindow(url) {
	wFormWin = window.open(url, "__OpenWindow__");
	wFormWin.focus();
}

function RollMenu(id, after) {
	eval(id+'.filters.blendTrans.stop();');
	eval(id+'.filters.blendTrans.Apply();');
	eval(id+'.src="'+after+'";');
	eval(id+'.filters.blendTrans.Play();');
}

function viewMagazineBIGImage(img) {
	imgWin = window.open("","MAGAZINEIMG","width=450,height=600,scrollbars=0");
	imgWin.document.open();
	imgWin.document.writeln("<html><head><title>°ú¿ùÈ£ ÀÌ¹ÌÁö ÀÚ¼¼È÷ º¸±â</title><style>td, body { margin:0px; padding:0px; }</style>");
	imgWin.document.writeln("<body><a href='javascript:window.close();'><img src='/magazine/data/" + img + "' border=0></a>");
	imgWin.document.writeln("</body></html>");
	imgWin.document.close();
	imgWin.focus();
}

