// JavaScript Document


//-----------------------
// pop up
//-----------------------

//News
function news(){ 
	newswin=window.open("news.html","newswin","toolbar=no,scrollbars=no,resizable=no,height=565,width=465,left=20,top=30");
	if(newswin){ 
		if(newswin.open){ 
			newswin.focus(); 
		}	
	}
}

//THEATER
function theater(){ 
	theaterwin=window.open("theater.html","theaterwin","toolbar=no,scrollbars=no,resizable=no,height=565,width=465,left=20,top=30");
	if(theaterwin){ 
		if(theaterwin.open){ 
			theaterwin.focus(); 
		}	
	}
}
//COMMENT
function comment(){ 
	theaterwin=window.open("comment.html","commentwin","toolbar=no,scrollbars=no,resizable=no,height=565,width=465,left=20,top=30");
	if(commentwin){ 
		if(commentwin.open){ 
			commentwin.focus(); 
		}	
	}
}