function openWindow(FullImage,W,H)
        {
        var newWindow=window.open("","Image","top=75,left=100,alwaysRaised=yes,toolbar=0,directories=0,menubar=0,status=0,resizable=1,scrollbars=0,width="+W+",height="+H);
        var newContent="<html><head><title></title></head>\n";
        newContent+="<body bgcolor='#ffffff' marginheight=0 marginwidth=0 leftmargin=0 rightmargin=0 topmargin=0>\n";
        newContent+="<table cellpadding=0 cellspacing=0 align=left valign=top border=0 width=100%>\n";
        newContent+='<tr><td><img src="';
        newContent+=FullImage+'"';
        newContent+="></td></tr></table>\n";
        newContent+="</body></html>";
        newWindow.document.open();
        newWindow.document.write(newContent);
        newWindow.document.close();
        newWindow=null;
        }
function winop(str){
        window.open(str, "win", "width=705,height=390,menubar=no")
}
function goUrl(url)
{
        window.open(url, '', "title=no, menubar=no,toolbar=no,location=no,status=no,scrollbars=no,resizable=no, width=780, height=560");
}
startMenu = function() {
if (document.all&&document.getElementById) {
cssmenu = document.getElementById("csstopmenu");
for (i=0; i<cssmenu.childNodes.length; i++) {
node = cssmenu.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
}
node.onmouseout=function(){
this.className=this.className.replace(" over", "")
}}}}}

if (window.attachEvent)
window.attachEvent("onload", startMenu)
else
window.onload=startMenu;


