<!--
//======================================
// SSF ¸ÞÀÏ¸µ 
//======================================

function SSF_mailing(data_mail)
{
    var w=520;
    var h=467;
    var left_size = (screen.width-w)/2;
    var top_size = (screen.height-h)/2;        
    var url="/board/mailing_solo.asp?data_mail="+data_mail;
    
    window.open( url, "_mailing", "width="+w+" height="+h+" top="+top_size+" left="+left_size);	      
}

//======================================
// SSF ¸ÞÀÏ¸µ2
//======================================

function SSF_moongcle(data_mail)
{
    var w=520;
    var h=467;
    var left_size = (screen.width-w)/2;
    var top_size = (screen.height-h)/2;        
    var url="/board/mailing_moongcle.asp?data_mail="+data_mail;
    
    window.open( url, "_mailing", "width="+w+" height="+h+" top="+top_size+" left="+left_size);	      
}

//======================================
// SSF UCC(SSF UCC¹Ù·Î°¡±â)
//======================================

function SSF_ucc()
{
    var w=450;
    var h=300;
    var left_size = (screen.width-w)/2;
    var top_size = (screen.height-h)/2;        
    var url="/2007/room7/SSF_ucc.asp";
    
    window.open( url, "_mailing", "width="+w+" height="+h+" top="+top_size+" left="+left_size);	      
}

//======================================
// SSF_TODAY
//======================================
function SSF_TODAY(url,type,width,height)
{
	var a = document.getElementById('Today_Base');
	var b = document.getElementById('Today_Content');
	
	a.style.top = 0;
	a.style.left = 0;
	a.style.display = "";

	if (document.documentElement.scrollHeight > document.body.scrollHeight) {
		a.style.height = document.documentElement.scrollHeight + 'px';
	} else { 
		a.style.height = document.body.scrollHeight + 'px';
	}		
				
	if (type == 'iframe') {
		b.innerHTML = "<iframe id='SSF_TODAY_iframe' src=" + url + " width="+ width +" height="+ height +" marginwidth='0' marginheight='0' frameborder='0' vspace='0' hspace='0' ></iframe>";
			
	} else if (type='close'){
		a.style.display = "none";
		b.style.display = "none";
	}

}

//======================================
// SSF CEO(CEO¸Þ½ÃÁö)
//======================================

function SSF_ceo()
{
    var w=670;
    var h=460;
    var left_size = (screen.width-w)/2;
    var top_size = (screen.height-h)/2;        
    var url="/message";
    
    window.open( url, "_mailing", "width="+w+" height="+h+" top="+top_size+" left="+left_size);
	
}

//======================================
// SSF ÀÛÇ°¿µ»ó
//======================================

function SSF_movie(board,title,movie)
{
    var w=600;
    var h=450;
    var left_size = (screen.width-w)/2;
    var top_size = (screen.height-h)/2;        
    var url="/2007/movie/index.asp?board="+board+"&title="+title+"&movie="+movie ;
    
    window.open( url, "_mailing", "width="+w+" height="+h+" top="+top_size+" left="+left_size);	      
}

//======================================
// SSF ÀÛÇ°¿µ»ó(ENGLISH)
//======================================

function SSF_movie_eng(board,title,movie)
{
    var w=600;
    var h=450;
    var left_size = (screen.width-w)/2;
    var top_size = (screen.height-h)/2;        
    var url="/2007/english/movie/index.asp?board="+board+"&title="+title+"&movie="+movie ;
    
    window.open( url, "_mailing", "width="+w+" height="+h+" top="+top_size+" left="+left_size);	      
}

//======================================
// SSF °­»ç¼Ò°³
//======================================

function lecture_info(no)
{
    var w=650;
    var h=450;
    var left_size = (screen.width-w)/2;
    var top_size = (screen.height-h)/2;        
    var url="/board/SSF.asp?board=lecturer&act=view&no="+no ;
    
    if (no == "") {
		alert("ÁË¼ÛÇÕ´Ï´Ù. °­»ç¼Ò°³ ÁØºñÁßÀÔ´Ï´Ù.");
	} else {
		window.open( url, "lecture_info", "width="+w+",height="+h+",top="+top_size+",left="+left_size+",status=no,scrollbars=yes");	
	}
}

//======================================
// SSF ÇÁ·Î±×·¥¼Ò°³
//======================================

function program_info(no)
{
    var w=680;
    var h=450;
    var left_size = (screen.width-w)/2;
    var top_size = (screen.height-h)/2;        
    var url="/board/SSF.asp?board=program_info&act=view&no="+no ;
    
    if (no == "") {
		alert("ÁË¼ÛÇÕ´Ï´Ù. ÇÁ·Î±×·¥¼Ò°³ ÁØºñÁßÀÔ´Ï´Ù.");
	} else {
		window.open( url, "program_info", "width="+w+",height="+h+",top="+top_size+",left="+left_size+",status=no,scrollbars=yes");	
	}
}
//======================================
// SSF TOWN
//======================================

function town()
{
    var w=932;
    var h=538;
    var left_size = (screen.width-w)/2;
    var top_size = (screen.height-h)/2;        
    var url="http://town.cyworld.com/pims/main/pims_main4.asp?tid=70056020";
    
    window.open( url, "chatting", "width="+w+" height="+h+" top="+top_size+" left="+left_size);	      
}

//======================================
//				Cookie ¾ò±â
//======================================
function getCookie(name)
{
	var nameOfCookie = name + "=";
	var x = 0;
	while ( x <= document.cookie.length )
	{
		var y = (x+nameOfCookie.length);
		if ( document.cookie.substring( x, y ) == nameOfCookie )
		{
			if ( (endOfCookie=document.cookie.indexOf( ";", y )) == -1 )
				endOfCookie = document.cookie.length;
			return unescape( document.cookie.substring( y, endOfCookie ) );
		}
		x = document.cookie.indexOf( " ", x ) + 1;
		if ( x == 0 )
			break;
	}
	return "";
}

//======================================
//		Æ÷Åä ¿øº»»çÀÌÁî´ë·Î º¸±â
//======================================
function photo_view(photo_url){
 
	window.open("/inc/photo_view.asp?urls=" + escape(photo_url), "imgview","directories=no,location=no,menubar=no,resizable=yes,scrollbars=no,status=no,titlebar=no,toolbar=no,width=50,height=50,top=50,left50");
}

//========================================
//Áß¾ÓÁ¤·Ä Popup (LSP)
//========================================

function PopCenterWin(URL, WindowName, aWidth, aHeight,scrollbar){
	var w = aWidth - 0;
	var h = aHeight - 0;
    
	if ((w == 0) || (w > window.screen.width)) {		w = window.screen.width;	}
	if ((h == 0) || (h > window.screen.height - 40)) {	h = window.screen.height - 40;	}
	var l = window.screen.width  / 2 - w / 2;
    var t = window.screen.height / 2 - h / 2 - 40;

	if (t < 0 ) {	t = 0;	}	
    window.open(URL, WindowName, "toolbar=no,location=no,directories=no,menubar=no,Width="+ w +",Height="+ (h+4) +",Left="+ l +",Top="+ t +",status=no,scrollbars="+scrollbar+"");
}

//======================================
//	ÀÓ½Ã ½ºÅ©¸³Æ® Popup Window(LSP)
//======================================

function read(a){
   window.open(a, "popup","toolbar=no,location=no,directories=no,scrollbars=yes,status=no,menubar=no,resizable=yes,width=600,height=600,top=50,left=50");
}

function msg(){
   alert("ÄÁÅÙÃ÷ÆäÀÌÁö ¾÷µ¥ÀÌÆ®ÁßÀÔ´Ï´Ù.\n\nÀá½Ã¸¸ ±â´Ù·ÁÁÖ½Ê½Ã¿ä.;");
}

function mwater(){
   //alert("¹Ì³×¶ö¿öÅÍ(M-¿öÅÍ)-Æ÷ÀÎÆ®´Â Á¶È¸ÁØºñÁßÀÔ´Ï´Ù.");
   location.href="/2007/room7/room7.asp?dir=mwater&subNum=2";
}
//======================================
//	Á¡ÇÁ¸Þ´º
//======================================

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function jumpMenu(form) {
  selection = form.popupwin.options[form.popupwin.selectedIndex].value;
  win = window.open(selection, 'popupwinname', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=900,height=600,left=0,top=0');
  win.focus();
}

function goRead(url,tbl,idx){
	var form = document.isForgoUrlm;
	form.tbl.value = tbl;
	form.idx.value = idx;
	form.action = url;
	form.submit();
}

function goUrl(no){
	var url = "/board/board.asp?board=newsletter&act=view&no="+no
	if(no.length > 0){
		//window.open(url,'');
		window.location.href=url;
	}
}

function goSite(url){
	if(url.length > 0){
		window.open(url,'');
	}
}

function FamilySite(selObj){
	var url=selObj.options[selObj.selectedIndex].value;
	if(url.length > 0){
		window.open(url,'');
	}
}

//======================================
//	ÀÓÀÇÁÖ¼Ò Popup Window(LSP)
//======================================

function go_blog() { //ÀÌ¿ôºí·Î±× ¹Ù·Î°¡±â
    temp = document.form_inc.neighbor_list.value;
	var w=1000;
    var h=680;
    var left_size = (screen.width-w)/2;
    var top_size = (screen.height-h)/2 - 50;        
    
    window.open('/myhomp/main.asp?ids='+temp, "ºí·Î±×", "width="+w+" height="+h+" top="+top_size+" left="+left_size+" scrollbars=yes");	      
}


//======================================
//				Log in
//======================================
function sf(){
	loginform.id.focus();
	}

//======================================
//		·Ñ¿À¹ö ¹öÆ°
//======================================
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

//======================================
//		LAYER SHOW/HIDE
//======================================

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_showHideLayers() { //v6.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}

//======================================
//		IFRAME RESIZE
//======================================

function frameResize(fname,mx,my) {
	var MinX = mx; //ÃÖ¼Ò °¡·ÎÆø
	var MinY = my; //ÃÖ¼Ò ¼¼·ÎÆø

	var Frame_Body = document.frames(fname).document.body;
	var Frame_Name = document.all(fname);
	var x = Frame_Body.scrollWidth + (Frame_Body.offsetWidth - Frame_Body.clientWidth);
	var y = Frame_Body.scrollHeight + (Frame_Body.offsetHeight - Frame_Body.clientHeight);
	Frame_Name.style.width = x;

	if (x < MinX) x = MinX;
	if (y < MinY) y = MinY;
	Frame_Name.style.width = x;
	Frame_Name.style.height = y+20;
}



//======================================
//		FLASH ACTIVE-X ¹®Á¦ÇØ°á(LSP)
//======================================

function swf(src,w,h){
	html = '';
	html += '<object type="application/x-shockwave-flash" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" id="param" width="'+w+'" height="'+h+'">';
	html += '<param name="movie" value="'+src+'">';
	html += '<param name="quality" value="high">';
	html += '<param name="menu" value="false">';
	html += '<param name="swliveconnect" value="true">';
	html += '<embed src="'+src+'" quality=high bgcolor="#ffffff" menu="false" width="'+w+'" height="'+h+'" swliveconnect="true" id="param" name="param" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"><\/embed>';
	html += '<\/object>';
	document.write(html);
}

function swf_bgcolor(src,w,h,color){
	html = '';
	html += '<object type="application/x-shockwave-flash" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" id="param" width="'+w+'" height="'+h+'">';
	html += '<param name="movie" value="'+src+'">';
	html += '<param name="quality" value="high">';
	html += '<param name="bgcolor" value="'+color+'">';
	html += '<param name="menu" value="false">';
	html += '<param name="swliveconnect" value="true">';
	html += '<embed src="'+src+'" quality=high bgcolor="#ffffff" menu="false" width="'+w+'" height="'+h+'" swliveconnect="true" id="param" name="param" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"><\/embed>';
	html += '<\/object>';
	document.write(html);
}

function swf_wmode(src,w,h){
	html = '';
	html += '<object type="application/x-shockwave-flash" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" id="param" width="'+w+'" height="'+h+'">';
	html += '<param name="movie" value="'+src+'">';
	html += '<param name="quality" value="high">';
	html += '<param name="menu" value="false">';
	html += '<param name="swliveconnect" value="true">';
	html += '<param name="wmode" value="transparent">';
	html += '<embed src="'+src+'" quality=high bgcolor="#ffffff" menu="false" width="'+w+'" height="'+h+'" swliveconnect="true" id="param" name="param" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"><\/embed>';
	html += '<\/object>';
	document.write(html);
}

//======================================
//		LOGINBOX LAYER (LSP)
//======================================

function fn_layershow() { //·Î±×ÀÎ°ü·Ã Å×ÀÌºíº¸±â
document.all.login_box.style.display = "block";
webzine_box.style.display = "none";
login_btn.style.display = "none";
webzine_btn.style.display = "block";
loginform.id.focus();
}

function fn_layerhidden() { //À¥Áø°ü·Ã Å×ÀÌºíº¸±â
document.all.login_box.style.display = "none";
webzine_box.style.display = "block";
login_btn.style.display = "block";
webzine_btn.style.display = "none";
menu1.focus();
}

function fn_s_layershow() { //·Î±×ÀÎ°ü·Ã Å×ÀÌºíº¸±â
document.all.login_box.style.display = "block";
logout_box.style.display = "none";
loginform.id.focus();
}

function fn_s_layerhidden() { //À¥Áø°ü·Ã Å×ÀÌºíº¸±â
document.all.login_box.style.display = "none";
logout_box.style.display = "block";

}

//======================================
//		µ¿¿µ»óÇÃ·¹ÀÌ¾î ÅÂ±×º¹»ç1 (LSP)
//======================================


function SSFPlayerObjTagCopy(board,servers) {
    
var MediaTable = board;
var ServerName = servers;  
var playerTag = '<!-- SSF-°ø¿¬¿µ»óº¸±â -->\n'
        + '<!-- http://www.in7942.or.kr -->\n'
        + '<table width="320" height="270" cellpadding="0" cellspacing="0" border="0">\n'
        + '<tr>\n'
        + '  <td align="center" width="320" height="270" background="http://www.in7942.or.kr/2007/images/bg_player.gif">\n'
        + '  <OBJECT ID="SSF21" WIDTH="320" HEIGHT="270" classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95"  type="application/x-oleobject">\n'
        + '  <param name="Filename" value="http://www.in7942.or.kr/board/data/' + MediaTable + '/' + ServerName + '">\n'
        + '  <param name="ShowControls" value="1">\n'
        + '  <param name="ShowPositionControls" value="0">\n'
        + '  <PARAM NAME="AutoPlay" VALUE="1">\n'
		+ '  <param name="EnableContextMenu" value="0">\n'
        + '  <param name="TransparentAtStart" value="1">\n'
        + '  <param name="AnimationAtStart" value="0">\n'
        + '  <embed type="application/x-mplayer2">\n'
        + '  </OBJECT>\n'
        + '  </td>\n'
        + '</tr>\n'
        + '</table>\n';
   
window.clipboardData.setData('Text', playerTag);
    
var msg = "SSF°ø¿¬µ¿¿µ»ó ¼Ò½º HTML TAG°¡ º¹»çµÇ¾ú½À´Ï´Ù.\n\n"
+ "¹Ì´ÏÈ¨ÇÇ, ºí·Î±×, °Ô½ÃÆÇµî¿¡¼­ »ç¿ëÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù.\n\n"
        + "ºÙ¿©³Ö±â(CTRL + V) ÇÏ½Ã¸é µË´Ï´Ù.";
    
alert(msg);
	
}


//======================================
//		µ¿¿µ»óÇÃ·¹ÀÌ¾î ÅÂ±×º¹»ç2 (LSP)
//======================================


function SSFPlayerObjTagCopy2(board,servers) {
    
var MediaTable = board;
var ServerName = servers;  
var playerTag = '<!-- SSF-°ø¿¬¿µ»óº¸±â -->\n'
        + '<!-- http://www.in7942.or.kr -->\n'
        + '<table width="320" cellpadding="0" cellspacing="0" border="0">\n'
        + '<tr>\n'
        + '  <td align="center" width="320" background="http://www.in7942.or.kr/2007/images/bg_player.gif">\n'
        + '  <embed  src="http://www.in7942.or.kr/board/data/' + MediaTable + '/' + ServerName + '"  SHOWCONTROLS=1 SHOWSTATUSBAR=1> \n'
        + '  </td>\n'
        + '</tr>\n'
        + '</table>\n';
   
window.clipboardData.setData('Text', playerTag);
    
var msg = "SSF°ø¿¬µ¿¿µ»ó ¼Ò½º HTML TAG°¡ º¹»çµÇ¾ú½À´Ï´Ù.\n"
+ "¹Ì´ÏÈ¨ÇÇ, ºí·Î±×, °Ô½ÃÆÇµî¿¡¼­ »ç¿ëÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù.\n"
        + "HTML¸ðµå¿¡¼­ ºÙ¿©³Ö±â(CTRL + V) ÇÏ½Ã¸é µË´Ï´Ù.";
    
alert(msg);
	
}

//======================================
//		µ¿¿µ»óÇÃ·¹ÀÌ¾î ÅÂ±×º¹»ç3 (LSP)
//======================================

function vod(src,w,h){
	html = '';
	html += '<embed src="'+src+'" width="'+w+'" height="'+h+'" type=application/octet-stream loop="FALSE" autostart="TRUE">';
	html += '</embed>';
	document.write(html);
}


//======================================
//		¹®¼­¸µÅ© (LSP)
//======================================
function goUrldoc(url){
	if(url.length > 0){
		window.open("http://www.in7942.or.kr/board/data/data/" + url,'','toolbar=no,location=no,directories=no,scrollbars=yes,status=no,menubar=no,resizable=yes,width=10,height=10,top=50,left=50');
	}
}

//======================================
//		SSF MOVIE ACTIVE-X ¹®Á¦ÇØ°á(NEOWAPLUS)
//======================================

function SSF_MOVIE(src){

	var vod= "http://www.in7942.or.kr/board/data/data/"+src

	html = '';
	html += '<object id="NSPlay" width=320 height=240 viewastext style="z-index:1" classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject">';
	html += '<param name="FileName" value="'+vod+'">';
	html += '<param name="ANIMATIONATSTART" value="1">';
	html += '<param name="AUTOSTART" value="1">';
	html += '<param name="BALANCE" value="0">';
	html += '<param name="CURRENTMARKER" value="0">';
	html += '<param name="CURRENTPOSITION" value="0">';
	html += '<param name="DISPLAYMODE" value="4">';
	html += '<param name="ENABLECONTEXTMENU" value="0">';
	html += '<param name="ENABLED" value="1">';
	html += '<param name="FULLSCREEN" value="0">';
	html += '<param name="INVOKEURLS" value="1">';
	html += '<param name="PLAYCOUNT" value="1">';
	html += '<param name="RATE" value="1">';
	html += '<param name="SHOWCONTROLS" value="0">';
	html += '<param name="SHOWSTATUSBAR" value="-1">';
	html += '<param name="STRETCHTOFIT" value="0">';
	html += '<param name="TRANSPARENTATSTART" value="1">';
	html += '<param name="UIMODE" value="FULL">';
	html += '<param name="displaybackcolor" value="0">';
	html += '<\/object>';
	document.write(html);
}

function SSF_RADIO(src){

	var vod= "http://www.in7942.or.kr/message/wma/"+src

	html = '';
	html += '<object id="NSPlay" width=320 height=61 viewastext style="z-index:1" classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject">';
	html += '<param name="FileName" value="'+vod+'">';
	html += '<param name="ANIMATIONATSTART" value="1">';
	html += '<param name="AUTOSTART" value="1">';
	html += '<param name="BALANCE" value="0">';
	html += '<param name="CURRENTMARKER" value="0">';
	html += '<param name="CURRENTPOSITION" value="0">';
	html += '<param name="DISPLAYMODE" value="1">';
	html += '<param name="ENABLECONTEXTMENU" value="0">';
	html += '<param name="ENABLED" value="1">';
	html += '<param name="FULLSCREEN" value="0">';
	html += '<param name="INVOKEURLS" value="1">';
	html += '<param name="PLAYCOUNT" value="1">';
	html += '<param name="RATE" value="1">';
	html += '<param name="SHOWCONTROLS" value="1">';
	html += '<param name="SHOWSTATUSBAR" value="-1">';
	html += '<param name="STRETCHTOFIT" value="0">';
	html += '<param name="TRANSPARENTATSTART" value="1">';
	html += '<param name="UIMODE" value="FULL">';
	html += '<param name="displaybackcolor" value="0">';
	html += '<\/object>';
	document.write(html);
}

//==========================================================
//		MENU URL Á¤ÀÇ JS
//==========================================================

/******* INDEX LINK *****************/
function menu0sub1() {  location.href = "#"; }
function menu0sub2() {  location.href = "#"; }
function menu0sub3() {  location.href = "#"; }

/******* maim LINK *****************/
function menu1() { location.href = "/2008season/introduction/introduction.asp?directory=about"; }
function menu2() { location.href = "/2008season/program/program.asp?directory=calendar"; }
function menu3() { location.href = "/2008season/ticket/ticket.asp?directory=infor"; }
function menu4() { location.href = "/2008season/community/community.asp?directory=notice"; }
function menu5() { location.href = "/2008season/media/media.asp?directory=press"; }

/******* SSF LINK *****************/
function menu1sub1() { location.href = "/2008season/introduction/introduction.asp?directory=about"; }
function menu1sub2() { location.href = "/2008season/introduction/introduction.asp?directory=2008ssf"; }
function menu1sub3() { location.href = "/2008season/introduction/introduction.asp?directory=greeting"; }
function menu1sub4() { location.href = "/2008season/introduction/introduction.asp?directory=organization"; }


/******* Program LINK *****************/
function menu2sub1() { location.href = "/2008season/program/program.asp?directory=calendar"; }
function menu2sub2() { location.href = "/2008season/program/program.asp?directory=program"; }
function menu2sub3() { location.href = "/2008season/program/program.asp?directory=special"; }
function menu2sub4() { location.href = "/2008season/program/program.asp?directory=fringe"; }
function menu2sub5() { location.href = "/2008season/program/program.asp?directory=musician"; }


/******* Tickets LINK *****************/
function menu3sub1() { location.href = "/2008season/ticket/ticket.asp?directory=infor"; }
function menu3sub2() { location.href = "/2008season/ticket/ticket.asp?directory=package"; }
function menu3sub3() { location.href = "/2008season/ticket/ticket.asp?directory=place"; }


/******* Community LINK *****************/
function menu4sub1() { location.href = "/2008season/community/community.asp?directory=notice"; }
function menu4sub2() { location.href = "/2008season/community/community.asp?directory=qanda"; }
function menu4sub3() { location.href = "/2008season/community/community.asp?directory=friends"; }
function menu4sub4() { location.href = "/2008season/community/community.asp?directory=nanumi"; }
function menu4sub5() { location.href = "/2008season/community/community.asp?directory=withssf"; }


/******* Media LINK *****************/
function menu5sub1() { location.href = "/2008season/media/media.asp?directory=press"; }
function menu5sub2() { location.href = "/2008season/media/media.asp?directory=vod"; }
function menu5sub3() { location.href = "/2008season/media/media.asp?directory=data"; }


/******* Special LINK *****************/
function menu6sub1() {  location.href = "/2008season/program/program.asp?directory=special&b_div=H"; }
function menu6sub2() {  location.href = "/2008season/program/program.asp?directory=special&b_div=S"; }
function menu6sub3() {  location.href = "/2008season/program/program.asp?directory=special&b_div=C"; }

/******* fringe LINK *****************/
function menu7sub1() {  location.href = "/2008season/program/program.asp?directory=fringe&b_div=A"; }
function menu7sub2() {  location.href = "/2008season/program/program.asp?directory=fringe&b_div=B"; }
function menu7sub3() {  location.href = "/2008season/program/program.asp?directory=fringe&b_div=C"; }

/******* Place LINK *****************/
function menu8sub1() {  location.href = "/2008season/ticket/ticket.asp?directory=place&b_div=A"; }
function menu8sub2() {  location.href = "/2008season/ticket/ticket.asp?directory=place&b_div=B"; }
function menu8sub3() {  location.href = "/2008season/ticket/ticket.asp?directory=place&b_div=C"; }
function menu8sub4() {  location.href = "/2008season/ticket/ticket.asp?directory=place&b_div=D"; }
function menu8sub5() {  location.href = "/2008season/ticket/ticket.asp?directory=place&b_div=E"; }
function menu8sub6() {  location.href = "/2008season/ticket/ticket.asp?directory=place&b_div=F"; }
function menu8sub7() {  location.href = "/2008season/ticket/ticket.asp?directory=place&b_div=G"; }
function menu8sub8() {  location.href = "/2008season/ticket/ticket.asp?directory=place&b_div=H"; }
function menu8sub9() {  location.href = "/2008season/ticket/ticket.asp?directory=place&b_div=I"; }
function menu8sub10() {  location.href = "/2008season/ticket/ticket.asp?directory=place&b_div=J"; }


/******* Schedule LINK *****************/
function menu9sub1() {  location.href = "/2008season/program/program.asp?directory=program&modes=view&search1=date&p_num=1"; }
function menu9sub2() {  location.href = "/2008season/program/program.asp?directory=program&modes=view&search1=date&p_num=2"; }
function menu9sub3() {  location.href = "/2008season/program/program.asp?directory=program&modes=view&search1=date&p_num=3"; }
function menu9sub4() {  location.href = "/2008season/program/program.asp?directory=program&modes=view&search1=date&p_num=4"; }
function menu9sub5() {  location.href = "/2008season/program/program.asp?directory=program&modes=view&search1=date&p_num=6"; }
function menu9sub6() {  location.href = "/2008season/program/program.asp?directory=program&modes=view&search1=date&p_num=7"; }
function menu9sub7() {  location.href = "/2008season/program/program.asp?directory=program&modes=view&search1=date&p_num=8"; }
function menu9sub8() {  location.href = "/2008season/program/program.asp?directory=program&modes=view&search1=date&p_num=9"; }
function menu9sub9() {  location.href = "/2008season/program/program.asp?directory=program&modes=view&search1=date&p_num=10"; }
function menu9sub10() {  location.href = "/2008season/program/program.asp?directory=program&modes=view&search1=date&p_num=20"; }
function menu9sub11() {  location.href = "/2008season/program/program.asp?directory=program&modes=view&search1=date&p_num=23"; }
function menu9sub12() {  location.href = "/2008season/program/program.asp?directory=program&modes=view&search1=date&p_num=24"; }


/******* etc LINK *****************/
function menu10sub1() {  location.href = "/2008season/etc/etc.asp?directory=sitemap"; }



//		ENGLISH MENU URL Á¤ÀÇ JS

/******* maim LINK *****************/
function menu11() { location.href = "/2008season/english/introduction/introduction.asp?directory=about"; }
function menu12() { location.href = "/2008season/english/program/program.asp?directory=calendar"; }
function menu13() { location.href = "/2008season/english/ticket/ticket.asp?directory=infor"; }
function menu14() { location.href = "/2008season/english/community/community.asp?directory=notice"; }
function menu15() { location.href = "/2008season/english/media/media.asp?directory=press"; }

/******* SSF LINK *****************/
function menu11sub1() { location.href = "/2008season/english/introduction/introduction.asp?directory=about"; }
function menu11sub2() { location.href = "/2008season/english/introduction/introduction.asp?directory=2008ssf"; }
function menu11sub3() { location.href = "/2008season/english/introduction/introduction.asp?directory=greeting"; }
function menu11sub4() { location.href = "/2008season/english/introduction/introduction.asp?directory=organization"; }


/******* Program LINK *****************/
function menu12sub1() { location.href = "/2008season/english/program/program.asp?directory=calendar"; }
function menu12sub2() { location.href = "/2008season/english/program/program.asp?directory=program"; }
function menu12sub3() { location.href = "/2008season/english/program/program.asp?directory=special"; }
function menu12sub4() { location.href = "/2008season/english/program/program.asp?directory=fringe"; }
function menu12sub5() { location.href = "/2008season/english/program/program.asp?directory=musician"; }


/******* Tickets LINK *****************/
function menu13sub1() { location.href = "/2008season/english/ticket/ticket.asp?directory=infor"; }
function menu13sub2() { location.href = "/2008season/english/ticket/ticket.asp?directory=package"; }
function menu13sub3() { location.href = "/2008season/english/ticket/ticket.asp?directory=place"; }


/******* Community LINK *****************/
function menu14sub1() { location.href = "/2008season/english/community/community.asp?directory=notice"; }
function menu14sub2() { location.href = "/2008season/english/community/community.asp?directory=qanda"; }
function menu14sub3() { location.href = "/2008season/english/community/community.asp?directory=friends"; }
function menu14sub4() { location.href = "/2008season/english/community/community.asp?directory=nanumi"; }
function menu14sub5() { location.href = "/2008season/english/community/community.asp?directory=withssf"; }


/******* Media LINK *****************/
function menu15sub1() { location.href = "/2008season/english/media/media.asp?directory=press"; }
function menu15sub2() { location.href = "/2008season/english/media/media.asp?directory=vod"; }
function menu15sub3() { location.href = "/2008season/english/media/media.asp?directory=data"; }


/******* Special LINK *****************/
function menu16sub1() {  location.href = "/2008season/english/program/program.asp?directory=special&b_div=H"; }
function menu16sub2() {  location.href = "/2008season/english/program/program.asp?directory=special&b_div=S"; }
function menu16sub3() {  location.href = "/2008season/english/program/program.asp?directory=special&b_div=C"; }

/******* fringe LINK *****************/
function menu17sub1() {  location.href = "/2008season/english/program/program.asp?directory=fringe&b_div=A"; }
function menu17sub2() {  location.href = "/2008season/english/program/program.asp?directory=fringe&b_div=B"; }
function menu17sub3() {  location.href = "/2008season/english/program/program.asp?directory=fringe&b_div=C"; }

/******* Place LINK *****************/
function menu18sub1() {  location.href = "/2008season/english/ticket/ticket.asp?directory=place&b_div=A"; }
function menu18sub2() {  location.href = "/2008season/english/ticket/ticket.asp?directory=place&b_div=B"; }
function menu18sub3() {  location.href = "/2008season/english/ticket/ticket.asp?directory=place&b_div=C"; }
function menu18sub4() {  location.href = "/2008season/english/ticket/ticket.asp?directory=place&b_div=D"; }
function menu18sub5() {  location.href = "/2008season/english/ticket/ticket.asp?directory=place&b_div=E"; }
function menu18sub6() {  location.href = "/2008season/english/ticket/ticket.asp?directory=place&b_div=F"; }
function menu18sub7() {  location.href = "/2008season/english/ticket/ticket.asp?directory=place&b_div=G"; }
function menu18sub8() {  location.href = "/2008season/english/ticket/ticket.asp?directory=place&b_div=H"; }
function menu18sub9() {  location.href = "/2008season/english/ticket/ticket.asp?directory=place&b_div=I"; }
function menu18sub10() {  location.href = "/2008season/english/ticket/ticket.asp?directory=place&b_div=J"; }
//-->
