// PopUp Function
function popUp(url, name, height, width)
{
	var url, name, height, width; 	/* local function scope variable declaration */

	window.open(url, name, 'height='+height+', width='+width+', fullscreen=no, toolbar=no, status=no, menubar=no, scrollbars=yes, resizable=yes, directories=no, location=no');
}


//-->
