function fg(wg) {
ew1 = window.open(wg, "g1", 'menubar=0,location=0,directories=0,status=0,scrollbars=auto,resizable=0,width=550,height=650');
ew1.focus();
}
function pano(wp) {
p1 = window.open(wp, "pw", 'menubar=0,location=0,directories=0,status=0,noscrollbars,noresizable,width=470,height=420');
p1.focus();
}


//Copy Right
function copyRight(startYear) {	
    date = new Date();
    year = date.getYear();
    if ( (year - startYear) > 0){
       document.write(startYear + " - " + year);
    }else{
     document.write(startYear);
    } 
}
