/* Script for Pop-Up Windows */

var newwindow;
function popWin(url)
	{
		newwindow=window.open(url, 'name', 'height=600,width=590, left=100, top=100, resizable=no, scrollbars=no, toolbar=no, status=yes');
		if (window.focus) {newwindow.focus()}
	}