function page(vurl,value)
{
	window.location.href = vurl + value;
}

function pageblank(vurl,value)
{
	if( value.length > 0)
		window.blank.location.href = vurl + value;
	else	
		window.blank.location.href = vurl;
}

function openpage(vpage)
{
		 var vtop = 200;
		 var vleft = 350;
		 var vwidth = 500;
		 var vheight = 350;
	   	 var windowfeatures = " width= " + vwidth + ", height= " + vheight +
							", left= " + vleft + ", top= " + vtop +
						 	", scrollbars=yes, status=no, resizeable=yes";
		 NewselWin = window.open( vpage, "subwindow", windowfeatures );
		 NewselWin.focus();	
}

function openpage1(vpage,vtop,vleft,vwidth,vheight)
{
	   	 var windowfeatures = " width= " + vwidth + ", height= " + vheight +
							", left= " + vleft + ", top= " + vtop +
						 	", scrollbars=yes, status=no, resizeable=yes";
		 NewselWin = window.open( vpage, "subwindow", windowfeatures );
		 NewselWin.focus();	
}

function openpage2(vpage,vwidth,vheight)
{
		 var value = document.form.searchtxt.value;
		 var vtop = 250;
		 var vleft = 350;
	   	 var windowfeatures = " width= " + vwidth + ", height= " + vheight +
							", left= " + vleft + ", top= " + vtop +
						 	", scrollbars=yes, status=yes, resizeable=yes";
		 NewselWin = window.open( vpage+"?vtxt="+value, "subwindow", windowfeatures );
		 NewselWin.focus();	
}

function openpage3(vid)
{
		 var vtop = 250;
		 var vleft = 300;
		 var vwidth = 500;
		 var vheight = 80;
	   	 var windowfeatures = " width= " + vwidth + ", height= " + vheight +
							", left= " + vleft + ", top= " + vtop +
						 	", scrollbars=yes, status=no, resizeable=yes";
		 NewselWin = window.open( "/inpro/abouttxt.php?vid= " + vid, "subwindow", windowfeatures );
		 NewselWin.focus();	
}

