
function rowOver(){
lmnt = window.event.srcElement;
if (lmnt.tagName.toUpperCase() == 'TABLE')
return;
while (lmnt.tagName.toUpperCase() !='TD') 
lmnt = lmnt.parentElement;
lmnt.style.background = "#AAAAAA";
}
function rowOut(){
lmnt = window.event.srcElement;
if (lmnt.tagName.toUpperCase() == 'TABLE')
return;
while (lmnt.tagName.toUpperCase() !='TD') 
lmnt = lmnt.parentElement;
lmnt.style.background ="#CCCCCC";
}



function demopopUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=0,width=620,height=500,left = 20,top = 20.5');");
}
function designpopUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=no,location=0,statusbar=0,menubar=0,resizable=0,width=700,height=600,left = 20,top = 20.5');");
}
