function pWinVanilla(url, winname, wwidth, wheight, resize) {
	newWindow = window.open(url, winname, "width="+wwidth+",height="+wheight+",toolbar=0,directories=0,menubar=0,status=0,location=0,scrollbars=0,copyhistory=0,resizable="+resize);
	newWindow.focus();
}