// JavaScript Document





//-----------------------

// pop up

//-----------------------





//NEWS

function news(){ 

	newswin=window.open("news.html","newswin","toolbar=no,scrollbars=no,resizable=no,height=450,width=600,left=100,top=20");

	if(newswin){ 

		if(newswin.open){ 

			newswin.focus(); 

		}	

	}

}





//THEATER

function theater(){ 

	theaterwin=window.open("theater.html","theaterwin","toolbar=no,scrollbars=no,resizable=no,height=450,width=600,left=120,top=40");

	if(theaterwin){ 

		if(theaterwin.open){ 

			theaterwin.focus(); 

		}	

	}

}





//COMMENT

function comment(){ 

	commentwin=window.open("comment.html","commentwin","toolbar=no,scrollbars=no,resizable=no,height=450,width=600,left=140,top=60");

	if(commentwin){ 

		if(commentwin.open){ 

			commentwin.focus(); 

		}	

	}

}




