function NewWindow(url, w, h) 	{
	//alert(url)
	if (w > screen.width || h > screen.width)	{
		if (w > screen.width && h <= screen.height)	{
			var nw = screen.width - 70;
			var nh = parseInt(h) + 36
		}
		if (h > screen.height && w <= screen.width)	{
			var nh = screen.height - 70;
			var nw = parseInt(w) + 36
		}
		if (w > screen.width && h > screen.height)	{
			var nh = screen.height - 70;
			var nw = screen.width - 70;
		}

		window.open(url,"_blank","width=" + nw + ",height=" + nh + ",left=0,top=0,scrollbars=yes,resizable=yes");
	}
	else	{
		var nh = parseInt(h) + 25;
		var nw = parseInt(w) + 25;
		window.open(url,"_blank","width=" + nw + ",height=" + nh + ",scrollbars=no,resizable=yes");
		}
}
