// JavaScript Document

function newWin(url,width,height)
	{ 
		
		var win = window.open(url,"View",'screenX=0,screenY=0,top=0,width=' + width + ',height=' + height + ' ,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=yes');
		win.focus();
	 
	}
function weblink(url) {
		window.open(url, "link");
	}	
