/**
 * Popup window javascript
 */
// Popup window code
function newPopup(url) {
	popupWindow = window.open(
		url,'popUpWindow','height=600,width=575,left=10,top=10,resizable=no,scrollbars=no,toolbar=no,menubar=no,location=no,directories=no,status=yes');
}

function closePopup()
{
  // Close the current window
  window.close();
}

