function Init(){
	var preloadArray = ['/img/b_register.gif'];
	var l = preloadArray.length;
	var tmpArray = [];
	for(var i=0; i<l; i++){
		tmpArray[i] = new Image();
		tmpArray[i].src = preloadArray[i];
	};
};

function popUp(src){
	window.name = "SearchWindow";
	wh = (!arguments[1])? "width=800,height=600" : arguments[1];
  nWindow = window.open(src,"_blank", wh + ",resizable=yes,scrollbars=yes");
}

function addToLightBox(no){
	if(no && document.getElementById){
		pFrame = document.getElementById("proxyFrame");
		pFrame.setAttribute("src","/lightbox/addtobox.php?no="+no);
	} else errorMsg('',1);
}

function addToOrder(id){
	targetObj = new Object;

		if(parent.name=="SearchWindow"){
			targetObj = parent;
		}else{
			if(parent.opener){ targetObj = parent.opener } else { window.open("/price.php?id="+id,"_blank"); return; } ;
		}
			
	targetObj.document.location = "/price.php?id="+id;
}


Init();

