function openPopUp(url)
{
	contentWindow = window.open(url, "contentWindow", "height=30, width=350,resizable=no,scrollbars=no,toolbar=no,location=no,menubar=no");
	contentWindow.focus()
}

function openPopUpGen(url)
{
	contentWindow = window.open(url, "contentWindow", "resizable=no,scrollbars=no,statusbar=no,toolbar=no,location=no,menubar=no");
	contentWindow.focus()
}
