// JavaScript Document

function openNewWindow(URLtoOpen,windowName, windowFeatures) { 
	newWindow=window.open(URLtoOpen, windowName, windowFeatures); 
}

function launch(url) {
	self.name = "opener";
	remote = open(url, "remote", "resizable,scrollbars,width=610,height=390");
}

function launchVoiis(url) {
	self.name = "opener";
	remote = open(url, "remote", "resizable,scrollbars,width=627,height=392");
}

function expandIt(whichEl){
	  var ss = document.getElementById(whichEl);
	  ss.style.display=="" ? ss.style.display="none" : ss.style.display="";
}

var winObject;
function openWindow( url, winName, winPros )
{
	winObject = window.open( url, winName, winPros );
	winObject.focus();
}