function imageRollover( image , url ) {
if ( !document.images ) {
return;
}
document.images[image].src = url;
}
var win = null;
function popup( url , name , width , height , scrollbar , menubar , resizable , toolbar , location , status , directories ) {
name = name ? name : "popup" ;
width = width ? width : 100 ;
height = height ? height : 100 ;
loaction = location ? location : "yes" ;
status = status ? status : "yes" ;
directories = directories ? directories : "no" ;
scrollbar = scrollbar ? scrollbar : "yes" ;
menubar = menubar ? menubar : "yes" ;
toolbar = toolbar ? toolbar : "yes" ;
resizable = resizable ? resizable : "yes" ;
// centered
LeftPosition = (screen.width) ? (screen.width-width)/2 : 100;
// handle 800 / 600
if ( screen.height == 600 && width > 600 ) {
TopPosition = 0;
}
else {
TopPosition = (screen.height) ? (screen.height-height)/2 : 100;
}
settings = 'width='+width+',height='+height+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scrollbar+',location='+location+',directories='+directories+',status='+status+',menubar='+menubar+',toolbar='+toolbar+',resizable='+resizable+'';
win = window.open( url , name , settings);
}
function rollover( channel , name , status ) {
if (document.images) {
document.images[name].src = eval( '"/image/"+channel+"/"+name+"_"+status+".gif"' );
}
}
function high( page_Object , color ) {
page_Object.style.background = color;
}
function low( page_Object , color ) {
page_Object.style.background = color;
}
function jump_to_url( url ) {
if( url == "nolink" || !url ) {
return;
}
window.location.href = url;
}