

function OpenNewWindow(url, x, y) {
	var options = "toolbar=no,menubar=no,scrollbars=yes,resizable=yes,width=" + x + ",height=" + y;
		msgWindow=window.open(url,"", options);
}

function OpenNewWindowNoScroll(url, x, y) {
	var options = "toolbar=no,menubar=no,scrollbars=no,resizable=yes,width=" + x + ",height=" + y;
		msgWindow=window.open(url,"", options);
}

defaultStep=1
step=defaultStep
function scrollDivRight(){
document.getElementById("piclane_picz").scrollLeft= document.getElementById("piclane_picz").scrollLeft+1;
timerRight=setTimeout("scrollDivRight()",10)
}

function scrollDivLeft(){
document.getElementById("piclane_picz").scrollLeft-=step
timerLeft=setTimeout("scrollDivLeft()",10)
}

function jumpRight(){
document.getElementById("piclane_picz").scrollLeft+=40
}

function jumpLeft(){
document.getElementById("piclane_picz").scrollLeft-=40
}


function toPoint(id){
document.getElementById("piclane_picz").scrollLeft=id;
} 

function showpic(gal,id) {
    document.location.href='?pID=2&gid='+ gal +'&pic='+ id +'&sloc='+ document.getElementById("piclane_picz").scrollLeft;
}