// JavaScript Document
function popWindow(loc, win, w, h)
{
	if (loc == '')
	{
		alert ('Missing Location');
		return false;
	}
	var newWin = window.open(loc, win, 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,height='+h+',width='+w);	
}
