 function openCopyWritePopUp() 
    {	
	var width = 640;
    var height = 520;
    var scrollbars = "no";
    var resizable =  "no";
    var winOptions = 'width=' + width + ',height=' + height + ',scrollbars=' + scrollbars + ',resizable=' + resizable;
    popupWin =  window.open('','POPUP',winOptions);
	popupWin.document.location="copypage.htm";
    popupWin.focus();
   }
   
   	function delayOpenDocument() {
      		for (var i=0; i<50; i++) {
      		}
   }
      
    function getImageSource() {
      		delayOpenDocument();
      		return document.forms[0].elements["imgsrc"].value;
    }
   
    function openCollectionPopUp(imgsrc) 
    {	
	document.forms[0].elements["imgsrc"].value = imgsrc;
    delayOpenDocument();
	var width = 451;
    var height = 530;
    var scrollbars = "no";
    var resizable =  "no";
    var winOptions = 'width=' + width + ',height=' + height + ',scrollbars=' + scrollbars + ',resizable=' + resizable;
    popupWin =  window.open('','POPUP',winOptions);
	popupWin.document.location="productpopup.htm";
    popupWin.focus();
  }