function ShowPageVar(winUrl, winName, width, height, top, left, screenX, screenY)
{
	winFeatures='width='+width+',height='+height+',titlebar=0,resizable=1,scrollbars=yes,top='+top+',left='+left+',screenX='+screenX+',screenY='+screenY;
	newwindow = window.open(winUrl,winName,winFeatures);
	if(window.focus)
	{
		newwindow.focus();
	}
}

function ReturnThis(value){

     return value;
}


function GoToPage(obj){
     var value = obj.options[obj.selectedIndex].value;
     var name = obj.options[obj.selectedIndex].text;

     if (value.length != 0) {
        location.href = value ;
     }

     return;
}

