function SymError()
{
 return true;
}
window.onerror = SymError;

function popupCenter(url,name,width,height)
{
 var left = (screen.width - width) / 2;
 var top = (screen.height - height) / 2;
 var options = "left=" + left + ",top=" + top + ",width=" + width + ",height=" + height;
 window.open(url,name,options);
 return true;
}

function msg(text)
{
if(!document.getElementById) return;
var msgbox = document.getElementById("msgbox");
msgbox.innerHTML = text;
}

function acImg(swnm)
{
var imax = pimg.length;
for(var i=0; i<=imax-1; i++)
document.images['ssw'+ i].src ='../../img/main/squareswoff.gif';
document.images['ssw'+ swnm].src ='../../img/main/squareswon.gif';
document.images["photo"].src = pimg[swnm];
var msgbox = document.getElementById("msgbox");
msgbox.innerHTML = pmsg[swnm];
}