function smallPop(reURL,idx,width,height) {

	var str, width,height;
	var iMyWidth;
    var iMyHeight;
        iMyWidth = (window.screen.width/2) - (width + 10)/2; 
        iMyHeight = (window.screen.height/2) - (height + 50)/2;
			URL = reURL+"?idx="+idx;
		str="'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=no,copyhistory=no,";
		str=str+"width="+width;
		str=str+",height="+height;
		str=str+",left=" + iMyWidth;
		str=str+",top=" +iMyHeight ;
		str=str+",screenX=" + iMyWidth + ",screenY=" + iMyHeight +"'";

		window.open(URL,'remote',str);
}
function fullPop(reURL,idx){	
	URL = reURL+"?idx="+idx;
	window.open(URL,"fullview",'fullscreen,scrollbars');
}