
function openNewWin(url,title,width,height)
{
	window.open(url,title,'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,width='+width+',height='+height+',scrollbars=yes,resizable=yes');
	return;
}

