<!--
function getQueryParamValue(_2b) {
	var q=document.location.search||document.location.hash;
	if (q) {
		var _2d=q.indexOf(_2b+"=");
		var _2e=(q.indexOf("&",_2d)>-1)?q.indexOf("&",_2d):q.length;
		if(q.length>1&&_2d>-1) {
			return q.substring(q.indexOf("=",_2d)+1,_2e);
		}
	}
	return "";
}

function openFullWindow(url) {
	// parameters:	url = URL of the popup window
	var w = screen.width; //fixed width
	var h = screen.height; //fixed height
	//var url = url_full;
	//if(w <= 800) {
	//	url = url_800;
	//}
	leftPosition = 0;		// centering horizontal position to middle of screen
	topPosition = 0;	// centering vertical position to middle of screen
	if (h<645) {
		var windowprops = 'width=' + w + ',height=' + h + ',top='+ topPosition +',left='+ leftPosition +',toolbar=no,location=no,directories=no,status=no,scrollbars=yes,menubar=no,resizable=yes'; //set popup window properties
	} else {
		var windowprops = 'width=' + w + ',height=' + h + ',top='+ topPosition +',left='+ leftPosition +',toolbar=no,location=no,directories=no,status=no,scrollbars=yes,menubar=no,resizable=yes'; //set popup window properties
	}
	var popup = window.open(url,'remote',windowprops); // open popup window with properties
	//popup.moveTo(0,0)
	popup.resizeTo(screen.width,screen.height);
	//popup.focus(); // focus on window
}
//-->
