function GoHome(pCID,pURL){
   var theLocation = "http://www.allposters.com?CID=" + pCID;
   if(pURL.length > 0){
   //Code Altered by Krithiga For HDT 8612 on 16-Jan-2007
        if (pURL.indexOf("#") > 0) 
            {
            theLocation = pURL 
            }             
        else  //Code Altered by Krithiga on 22-Jul-2007 For APCF-271	
            theLocation = pURL + "?CID=" + pCID;
   }//end if
   if (window.opener){
      if(pURL.length > 0){
         window.opener.top.location = theLocation;
      }//end if
      window.opener.focus();
      window.close();
   }else{
      window.location = theLocation;
   }//end if
}//end function
function GoHomeFromFrame(pCID, pURL) {
    var theLocation = "http://www.allposters.com?CID=" + pCID;
    if (pURL.length > 0) {
        if (pURL.indexOf("#") > 0) {
            theLocation = pURL
        }
        else
            theLocation = pURL + "?CID=" + pCID;
    }
    window.parent.location.href = theLocation;
}
function closePop(){
   if (window.opener){
      if (window.opener.focus){
         window.opener.focus();
      }//end if
   }//end if
   if (window.close){
      window.close();
   }//end if
}//end function
