function OpenWin1(){
	win1=window.open("acc.html","subwin","width=550,height=400,scrollbars=1,toolbar=0,resizable=1,left=20,top=20");

}
function OpenWin2(){
	win2=window.open("parts.html","subwin","width=350,height=400,scrollbars=1,toolbar=0,resizable=1,left=20,top=20");

}
function OpenWin3(){
	win3=window.open("stained_at.html","subwin","width=350,height=400,scrollbars=1,toolbar=0,resizable=1,left=20,top=20");

}
function OpenWin4(){
	win4=window.open("stained.html","subwin","width=550,height=400,scrollbars=1,toolbar=0,resizable=1,left=20,top=20");

}
function OpenWin5(){
	win5=window.open("url.html","subwin","width=300,height=300,scrollbars=1,toolbar=0,resizable=1,left=20,top=20");

}
function CloseWin(){
    window.close();
}


function noContextMenu()
{
    var img_elements = document.getElementsByTagName('img');
    for (var i in img_elements) {
        img_elements[i].oncontextmenu = function() {
            return false;
        }
    }
}


