function popUp(url, width, height)
{
	popWin = window.open(url, 'popUp', 'location=no, menubar=no, directories=no, scrollbars=no, resizable=no, status=no, width=' + width + ', height=' + height);
}

function closewindow()
{
	window.close();
}