
var fontSize = 10;
var lineHeight = 20;

function saveFaceSize()
{
	var expire = new Date ();
   	expire.setTime (expire.getTime() + (6000 * 24 * 3600000)); //expires in 6 days from users clock
   	expire = expire.toGMTString();
	document.cookie="fontSize="+fontSize+"; path=/; expires="+expire;
}
	
function setFaceSize()
{
	lineHeight = fontSize+Math.round(.3*fontSize);
	obj = document.getElementById("Body");
	obj.style.fontSize = fontSize+"pt";
	obj.style.lineHeight = lineHeight+"pt"
    saveFaceSize();
}

function FontPlus()
{
	fontSize = fontSize+3;
	if (( fontSize >= 10) && ( fontSize < 13 )){
		fontSize = 10;  
	}
	if (( fontSize >= 13) && ( fontSize < 16 )){
		fontSize = 13;
	}
	if (( fontSize >= 16) && ( fontSize < 19 )){
		fontSize = 16;
	}	
	if (fontSize >= 16) fontSize = 16;
	setFaceSize();
}
	
	
function FontMinus()
{
	fontSize = fontSize-3
    if (( fontSize >= 10) && ( fontSize < 13 )){
        fontSize = 10;
    }
	if (( fontSize >= 13) && ( fontSize < 16 )){
        fontSize = 13;
    }	
    if (( fontSize >= 16) && ( fontSize < 19 )){
        fontSize = 16;
    }
	if (fontSize <= 10) fontSize = 10;
	setFaceSize();
}
	
function ContentPrint(clss_cd) {
	url = "pop_print.asp?clss_cd=" + clss_cd ;

    window.open(url,'Contentprint','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizeable=1,width=650,height=420,top=150,left=100')
  
	document.frm.method = "post" 
	document.frm.action = "pop_print.asp";
	document.frm.target ="Contentprint"
	document.frm.submit(); 
	
}

function popup_N_print(news_cd) {
    news_print = window.open('/news/news_print.asp?cd='+news_cd,'news_print','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizeable=1,width=650,height=420,top=150,left=100')
}

function ContPrint() {

   	document.all("print_frm").style.display	= "none";
	print(); 
	
}
function moreIMAGE(pk) { 
	   url = "s_img_view_result.asp?pk=" + pk
       window.open(url,'Contentprint','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizeable=1,width=800,height=650,top=150,left=100')

	
}

function OpenSlide(pk) { 
	   url = "/festival/contentView/s_img_slideshow.asp?pk=" + pk
       window.open(url,'Contentprint','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizeable=1,width=636,height=600,top=150,left=100')

	
}
//---ÀÌ¹ÌÁö Å©°Ô º¸±â---------------------------------------------------------------------------

function NewWinImg(img){ 
		imageid= new Image(); 
		imageid.src=(img); 
        H=imageid.height + 20; 
        W=imageid.width + 20 ;   


	
	    
       // imgWin=window.open("","","width="+W+",height="+H+",scrollbars=yes"); 
       // imgWin.document.write("<html><head><meta http-equiv='Content-Type' content='text/html; charset=utf-8'><title>ÀÌ¹ÌÁöÈ®´ë º¸±â</title></head>");
       // imgWin.document.write("<body topmargin=0 leftmargin=0><center>");
       // imgWin.document.write("<img src="+img+" onclick='self.close()' alt='Å¬¸¯ÇÏ½Ã¸é ÀÌ¹ÌÁö°¡ »ç¶óÁý´Ï´Ù'>");
        url = "/_service/_contentview/img_view.asp?img=" + img + "&width=" + W + "&height=" + H ;
       window.open(url,'img_view','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizeable=1,width=440,height=440,top=150,left=100')
 

		} 
