function openWindow(url) {
  window.open(url,"newwindow",
  				"width=500, height=500,scrollbars=yes,resizeable=no,status=yes");
}

function closeWindow(url) {
	window.close(url);	
}

function openProdWindow(url) {
  window.open(url,"newwindow",
  				"width=700, height=500,scrollbars=yes,resizeable=yes,status=yes");
}

function closeProdWindow(url) {
	window.close(url);	
}
