function popWin(width,height,url) 
{
	newWin = window.open(url,'NewWindow','width=' + width + ',height=' + height + ',scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no,resizable=yes');
	newWin.focus();
}
