// JavaScript Document


//-----------------------
// pop up
//-----------------------


//NEWS
function news(){ 
	newswin=window.open("news.html","newswin","toolbar=no,scrollbars=no,resizable=no,height=550,width=610,left=10,top=20");
	if(newswin){ 
		if(newswin.open){ 
			newswin.focus(); 
		}	
	}
}
//dvd
function dvdInfo(){ 
	newswin=window.open("dvd.html","dvdwin","toolbar=no,scrollbars=yes,resizable=no,height=550,width=820");
	if(dvdwin){ 
		if(dvdwin.open){ 
			dvdwin.focus(); 
		}	
	}
}




//THEATER
function theater(){ 
	theaterwin=window.open("theater.html","theaterwin","toolbar=no,scrollbars=no,resizable=no,height=550,width=610,left=20,top=30");
	if(theaterwin){ 
		if(theaterwin.open){ 
			theaterwin.focus(); 
		}	
	}
}


//Link
function links(){ 
	linkswin=window.open("link.html","linkswin","toolbar=no,scrollbars=no,resizable=no,height=550,width=610,left=25,top=35");
	if(linkswin){ 
		if(linkswin.open){ 
			linkswin.focus(); 
		}	
	}
}

