<!--

var w = 630, h = 375;




//window.open('page,html','popup','width=' + popW + ',height='+popH+',top='+topPos+','left='+leftPos);











var Open = ""
var Closed = ""

function preload(){
if(document.images){
	Open = new Image(16,13)    
	Closed = new Image(16,13)
	Open.src = "images/minus.gif"
	Closed.src = "images/plusik.gif"
}}


function showhide(what,what2){
	if (what.style.display=='none'){
		what.style.display='';
		what2.src=Open.src
	}
	else{
		what.style.display='none'
		what2.src=Closed.src
	}
}

function popUp(URL,winWidth,winHeight) {

day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + winWidth + ",height=" + winHeight + ",left=75,top=50');");
}


function loadBoard(){
   parent.frames['iBoard'].location.reload();
}

function CheckLength(length) {
   if (window.event.srcElement.value.length >= length) {
	alert('You have reached the maximum length for your message.');
        return false;                         
   }
}


function resizeOuterTo(w,h) {
 if (parseInt(navigator.appVersion)>3) {
   if (navigator.appName=="Netscape") {
    top.outerWidth=w;
    top.outerHeight=h;
   }
   else top.resizeTo(w,h);
 }
}





-->