
//this is a javascript function which opens remote window

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
	}
		
function makeremote0() {
	remote = window.open("","sample","width=370,height=530,scrollbars=1,marginheight=0, marginwidth=0,windowborder=no,windowspacing=0");
	remote.location.href = "remote/sample.html";
	}
	
function makeremote1() {
	remote = window.open("","frame","width=830,height=540,scrollbars=1,marginheight=0, marginwidth=0,windowborder=no,windowspacing=0");
	remote.location.href = "remote/sshow.html";
	}
	

function workWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}

//I hope this is a javascript function which works remotely for rollovers

//this function draws the hilite image, usually with an onMouseOver
function act(imgName) {
	if (document.images)
	document[imgName].src = eval(imgName + 'off.src');
	}	

//this function redraws the inactive image, usually with an onMouseOut
function inact(imgName) {
	if (document.images)
	document[imgName].src = eval(imgName + 'on.src')
	}		
          
