
// **************************************************************
// **************************************************************
// **************************************************************
// Function to create a popup window
function newWindow(url,width,height)
{
	newWin = window.open(url,'newWin','width='+width+',height='+height);
	newWin.focus();
}

