// JavaScript Document
function reloadImg(path,altTxt) {
	L=document.getElementById("proImg");
	str="<img src='"+path+"' alt='"+altTxt+"' width='400' height='577' />"
	L.innerHTML=str;
}
function sub_rollOver(obj){
 obj.className="sub_roll";
}
function sub_rollOut(obj){
 obj.className="sub";
}
function getURL(target){
 window.location.href=target;
}
function showSb(target){
document.getElementById("sb").style.display="none";
document.getElementById(target).style.display="block";
}
function hideSb(target){
document.getElementById(target).style.display="none";
document.getElementById("sb").style.display="block";
}
function showImg(target,path){
document.getElementById(target).style.backgroundImage ='url(/images/'+path+')';
}
