function over() {
    window.event.srcElement.style.filter = "alpha(opacity=50)";
}
function out() {
    window.event.srcElement.style.filter = "alpha(opacity=100)";
}


            showRightWarning = true;
                        	copyrightMsg = "This site is copyrighted.  Copyright © 2005 International Bridal, LLC. All rights reserved.  Unauthorized use prohibited.  Violators will be prosecuted to the maximum extent of the law.";
                        function rightclickAlert() {
                if (showRightWarning) {
                    window.alert(copyrightMsg);
                    return false;
                }
                else {
                    return true;
                }
            }
            function clickIE4(){
                if (event.button==2){
                    rightclickAlert(message);
                }
            }
            function clickNS4(e){
                if (document.layers||document.getElementById&&!document.all){
                    if (e.which==2||e.which==3){
                        rightclickAlert(message);
                    }
                }
            }
            if (document.layers){
                document.captureEvents(Event.MOUSEDOWN);
                document.onmousedown=clickNS4;
            }
            else if (document.all&&!document.getElementById){
                document.onmousedown=clickIE4;
            }
            document.oncontextmenu = rightclickAlert;
		



function MouseHover(tbl,idx,cls){
	var t,d;
	if(document.getElementById)
		t=document.getElementById(tbl);
	else 
		t=document.all(tbl);
	if(t==null)
		return;
	if(t.getElementsByTagName)
		d=t.getElementsByTagName("TD");
	else 
		d=t.all.tags("TD");
	if(d==null)
		return;
	if(d.length<=idx)
		return;
	d[idx].className=cls;
}

