// sets the print style sheet
// (modified version of the ala script)
function enablePrintStylesheet() {
	var i, links;
	links = document.getElementsByTagName("link");
	for(i = 0; i < links.length; i++) {
		if(links[i].getAttribute("rel").indexOf("style") != -1) {
			if(links[i].getAttribute("media").indexOf("screen") != -1) {
				links[i].setAttribute("href", "/styles/print.css");
			}
		}
	}
}

// open a popup with set width and height
function openWin(url, width, height) {
	window.open(url, 'newwin', 'width=' + width + ',height=' + height);
}


var newwindow;
function newWindow(eid)
{
		//eid = '/event_detailed.php?eid='+eid;
		eid = '/events/' + eid;
		newwindow=window.open(eid, 'eventDetails','height=500,width=740,scrollbars=yes,resizable=yes');
		if (window.focus) {newwindow.focus()}
}

var qtvrwindow;function qtvrWindow(id){		id = '/qtvr/' + id;		newwindow=window.open(id, '','height=400, width=350,scrollbars=no,resizable=no');		if (window.focus) {
			newwindow.focus();
		}}function productUpdateSession(field) {	//field.checked = (field.checked ? 0 : 1);		//document.products.submit();}

function productUpdateSession(field) {
	//field.checked = (field.checked ? 0 : 1);
	
	//document.products.submit();
}