/////////////////////////////////////////////////////
//                                                 //
//  DEFAULT SCRIPT                                 //
//  ---------------------------------------------  //
/////////////////////////////////////////////////////

function openWindow(whichOne,tools,scrolling,resize,w,h,wName){
	if (screen.width <= 800){
		if (w >= 800){
			w = 796;
			scrolling = 'yes';
			resize = 'yes'
		}
		if (h >= 500){
			h = 500;
			scrolling = 'yes'
			resize = 'yes'
		}
	}
	if (wName == null) wName = 'newW'
	tcsopen = window.open(whichOne,wName,'toolbar='+tools+',location=no,directories=no,status=yes,menubar=no,scrollbars='+scrolling+',resizable='+resize+',width='+w+',height='+h);
	if (document.all) {
		if (tcsopen.closed==false) tcsopen.focus()
	}else{
		tcsopen.focus()
	}
}

if (document.all){
	document.write("<link rel='stylesheet' href='/styles/default.css'>")
}else{
	document.write("<link rel='stylesheet' href='/styles/ns.css'>")
}
