function OpenWindowPicture(session_name ,session_id, width, height, index) {
	var path = CUR_PATH.indexOf('?')!=-1 ? CUR_PATH+'&popup='+index : CUR_PATH+'?popup='+index;
	new_window = open(path,"nav","status=no,scrollbars=no,width="+width+",height="+(parseInt(height)+20)+",resizable=yes");
}

function OpenWindowPictureBig(session_name ,session_id, width, height, index) {
	var path = CUR_PATH.indexOf('?')!=-1 ? CUR_PATH+'&popup='+index : CUR_PATH+'?popup='+index;
	new_window = open(path,"nav","status=no,scrollbars=no,width="+(screen.width*0.7)+",height="+((screen.height*0.7)+20)+",resizable=yes");
}

function OpenWindowPicture2(obj, width, height) {
	new_window = open(obj.href,"nav","status=no,scrollbars=no,width="+width+",height="+(parseInt(height)+20)+",resizable=yes");
	return false;
}

function OpenWindow(session_name ,session_id, width, height, index) {
    temp =new Image();
    temp.src = "?"+session_name+"="+session_id+"&file="+index;
    new_window = open(temp.src,"nav","status=no,scrollbars=no,width="+width+",height="+height+",resizable=yes");
}

