
<!-- BLOCKS ALL JAVASCRIPT ERRORS

function blockError(){return true;}
window.onerror = blockError;


// MOUSEOVER EFFECTS



if (document.images) {


contacton = new Image(70, 70);
contacton.src = "picts/contact-on.gif"

contactoff = new Image(70, 70);
contactoff.src = "picts/contact-off.gif"

}

function img_act(imgName) {
if (document.images) {
imgOn = eval(imgName + "on.src");
document [imgName].src = imgOn;
}
}

function img_inact(imgName) {
if (document.images) {
imgOff = eval(imgName + "off.src");
document [imgName].src = imgOff;
}
}

function OpenWinWS(url,w,h){
  sw=screen.width;
  sh=screen.height;
	t=sh/2.0-h/2.0;
	l=sw/2.0-w/2.0;
win=window.open(url,"test","titlebar=yes,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width="+w+",height="+h+",top="+t+",left="+l);
}

function OpenWin(url,w,h){
  sw=screen.width;
  sh=screen.height;
	t=sh/2.0-h/2.0;
	l=sw/2.0-w/2.0;
win=window.open(url,"test","titlebar=yes,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,width="+w+",height="+h+",top="+t+",left="+l);
}

function OpenWinWS2(url,w,h){
  sw=screen.width;
  sh=screen.height;
	t=sh/2.0-h/2.0;
	l=sw/2.0-w/2.0;
win=window.open(url,"frame0","titlebar=yes,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width="+w+",height="+h+",top="+t+",left="+l);
}

function OpenPrivate(){
	str=window.prompt("JOWAのプライベートキーワードは？","")
	if(str != "" && str != null){
	add1=location.host;
	location.href="http://www.joyce-and-wat.com/"+str+".html";
	}
}
function OpenPrivate2(){
	str=window.prompt("管理掲示板へのアクセスパスは？","")
	if(str != "" && str != null){
	add1=location.host;
	location.href="http://cgibbs.mmjp.or.jp/bbs/show/www.joyce-and-wat.com/"+str;
	}
}

// -->