// JavaScript Document

var newWindow
function OpenWin(url,width,height) {
	width2 = parseInt(width) + 40;
	height2 = parseInt(height) + 50;
	newWindow = window.open(url,"NewWindow","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width="+width2+",height="+height2)
}
