function change_style_over(table)
{
//	alert(table);
	table.style.backgroundColor =  '#FFF0F0'; 
    table.style.borderColor =  '#FFDDDD';
}

function change_style_out(table)
{
//	alert(table);
	table.style.backgroundColor =  ''; 
    table.style.borderColor =  '';
}

function change_style_red_over(table)
{
//	alert(table);
	table.style.backgroundColor =  '#FFEAEA'; 
    table.style.borderColor =  '#FFDDDD';
}

function change_style_red_out(table)
{
//	alert(table);
	table.style.backgroundColor =  ''; 
    table.style.borderColor =  '';
}


function go_to_url(url)
{
	window.location.href = url;
}
function putImg(p)
{
var l=document.images.length;
for(i=0;i<l;i++){
if(document.images[i].complete!=true ||  document.images[i].naturalHeight==0){
if(p==undefined){
document.images[i].style.display="none";
}
else{
document.images[i].src=p;
}
}
}
}
