/*JS Document */

function WinPop(url, w, h){
	var propstr = "width=" + w + ",height=" + h + ",scrollbars=yes,menubar=no,location=no,toolbar=no,directories=no,status=no,resizable=no";
	var NewWin = window.open(url, 'newwin', propstr); 	
	}

