function openWindow(language) {

if(language == "french") {
	netscape = "http://www.fantasia.ca/websiteFr.html"; 
	explorer = "http://www.fantasia.ca/websiteFr.html"; 
	unknown  = "http://www.fantasia.ca/websiteFr.html"; 
} else {
	netscape = "http://www.fantasia.ca/websiteEn.html"; 
	explorer = "http://www.fantasia.ca/websiteEn.html"; 
	unknown  = "http://www.fantasia.ca/websiteEn.html"; 

}

windowprops = "top=0,left=0,resizable=yes,scrollbars=no,fullscreen=yes"
+ ",width=" + window.screen.width + ",height=" + window.screen.height;

ns = (navigator.appName == 'Netscape');
ie = (navigator.appName == 'Microsoft Internet Explorer');
url = (!ns & !ie) ? unknown : ( ns ? netscape : explorer);
window.open(url, "Fantasia", windowprops);
//  End -->
}

function fullScreen(theURL) {
	window.open(theURL, 'Fantasia', 'fullscreen=yes, scrollbars=auto');
}