


function submitchange(color){
var el=event.srcElement
if (el.tagName=="INPUT"&&el.type=="submit")
event.srcElement.style.backgroundColor=color
}
function buttonchange(color){
var el=event.srcElement
if (el.tagName=="INPUT"&&el.type=="button")
event.srcElement.style.backgroundColor=color
}
//This function is a popup action for all enlarge image windows
function image_open(image_loc,img)
{
     HTML="<html><style>body{margin:0px 0px 0px 0px}</style><body onBlur='top.close()'><img src='"+ image_loc +"' border=0 name=load_image onLoad='window.resizeTo(document.load_image.width+10,document.load_image.height+50)' galleryimg=no onClick='self.close()'></body></html>";
     popupImage=window.open('','Enlarged_Image','toolbar=no,scrollbars=no,width=1,height=1');
     popupImage.document.open();
     popupImage.document.write(HTML);
     popupImage.document.close();
}
//-->