
var winPopup=null;

function ShowPopup(strURL,strHeight,strWidth){
	winPopup=window.open(strURL,"","scrollbars=yes,resizable=no,height="+strHeight+",width="+strWidth);
}


function ShowImage(strImage){
	winPopup=window.open("/catalog/catalog_image.aspx?image_filename="+strImage);
}

function closeChildWindow(){
  if(winPopup!=null && !winPopup.closed)winPopup.close();
}

function closeWindow(){
  window.close()
}