// JavaScript Document
function launchPortal() {
	winOptions = "width=680, height=500, scrollbars=0, resizable=1, status=0, toolbar=0, menubar=0, location=0";
	window.open("http://portal.knowledgebase.net/?cid=8481&c=6552&cpc=5GRJ7U2h1JFMjyc4w263d7PPk3g4QY1m", "CP8481", winOptions);
	return false;
}
function winPop(x, y, name, url){
	stringX="width="+x;
	stringY= "height="+y;
	name = name;
	url = url;
	winOptions = stringX +", "+ stringY +", "+ "scrollbars=0, resizable=1, status=0, toolbar=0, menubar=0, location=0";
	newWin = window.open(url, name, winOptions);
	newWin.focus();
	newWin.innerWidth = x;
	newWin.innerHeight = y;
}