function winOpenVS(thewidth,theheight){
	f1=window.open('','popup1','scrollbars=yes,toolbar=0,titlebar=0,status=1,resizable=1,width='+thewidth+',height='+theheight+',left=20,top=20');
	if (parseInt(navigator.appVersion)>2) {f1.focus()};
}

function winOpenVSurl(theurl,thewidth,theheight){
	f1=window.open(theurl,'popup1','scrollbars=yes,toolbar=0,titlebar=0,status=1,resizable=1,width='+thewidth+',height='+theheight+',left=20,top=20');
	if (parseInt(navigator.appVersion)>2) {f1.focus()};
}