
function winOpen(oUrl,oName) {
	var newWindow = window.open(oUrl,oName,"width=400,height=240,left=100,top=200");
	newWindow.focus();
}
