// JavaScript Document
function setCookie (name, value) {
  document.cookie = name + "=" + value ;
}

function getCookie(name) {
  var search;
  search = name + "=";
  offset = document.cookie.indexOf(search) ;
  if (offset != -1) {
    offset += search.length ;
      end = document.cookie.length;
	  var tempstr=document.cookie.substring(offset, end);
	  offset1 = tempstr.indexOf(";") ;
	  if(offset1==-1){offset1=end-offset;}
    return unescape(document.cookie.substring(offset, offset+offset1))+"";
  }
  else
  {
  	setCookie(name,1);
  	return "1";
  }
}
var canShowPop=getCookie("e-print")!="true";
function showWindow(id,index){
	var where = document.referrer;
	var mypos;
	index=index+1;
	mypos=where.toLowerCase().indexOf("http://www.google") + where.toLowerCase().indexOf("http://www.e-print.com.hk");
	if (mypos<-1) {
		if(canShowPop){
			try{
			 var args='';
			 args+='top='+(index*20);
			 args+=',left='+(index*30);
			 args+=',width=560,height=395,scrollbars=no';
			 window.open('/pages/showImg.jsp?id='+id,'',args);
			}catch(x){}
		     //window.open("pop-news07.htm",'','top=30,left=5,width=380,height=488,scrollbars=no');		
				//  window.open("pop-news04.htm",'','top=60,left=30,width=548,height=399,scrollbars=no');
				 //window.open("pop-news03.htm",'','top=60,left=30,width=600,height=444,scrollbars=no');
				 // window.open("pop-news05.htm",'','top=90,left=60,width=551,height=365,scrollbars=no');
	
	   }
	}
}
setCookie("e-print","true");