// JavaScript Document

function newwindow(address,w1,h1,T1,L1)
{
	var winFeatures="width="+w1+",height="+h1+",top="+T1+",left="+L1+",resizable=yes,scrollbars=yes";
	window.open(address,"",winFeatures);
}