﻿
// PV영상 출력
function EasternValleyPV() {
	var swfHtml = [
		'<object id="EasternValleyPV" name="EasternValleyPV" codeBase="file:///fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="100%" height="900">',
		'<param name="Movie" value="swf/EasternValleylanding.swf">',
		'<param name="WMode" value="Transparent">',
		'<param name="Quality" value="High">',
		'<param name="Menu" value="0">',
		'<param name="scale" value="noscale">',
		'<embed src="swf/EasternValleylanding.swf" width="100%" height="900" scale="noscale" quality="high" wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer/" />',
		'</object>'
	].join('');
	document.write(swfHtml);
}


// 체크없이 홈페이지 바로가기 클릭시 단발성 쿠키 작성
function gohome() {   
    var url = 'http://pangya.gametree.co.kr/Default.aspx';
    var link = document.createElement ("a");
    
    if (link.click != undefined) {
        document.body.appendChild(link);
        link.href = url;
        link.click();
    } else {
        location.href = url;
    }
}

// 체크하고 홈페이지 바로가기 클릭시 7일짜리 쿠키 작성
function onskip() {
	var today = new Date();
	today.setDate(today.getDate()+7);
	document.cookie = 'EasternValley=skip; path=/; expires='+today.toGMTString();
	gohome();
}