function helpwindowGo(id,base,questionid,username,cd){
	var thispage="/popups/helpwindowframe.asp?topicid=" + id + "&faq=" + base + "&helpid=" + base + "&questionid=" + questionid+ "&username=" + username + "&cd=" + cd;
	var thiswindow='ifaq';
	//if (document.all) {
		windowheight = screen.availHeight;
		rightwidth=190;
		leftwidth=screen.availWidth-rightwidth-11;

		var options="width="+rightwidth+",height="+(windowheight-51)+",screenX="+leftwidth+",screenY=0,top=0,left=" +leftwidth+",toolbar=0,location=0,status=1,menubar=0,resizable=1";
		//fitscreen();
		helpwindow=window.open(thispage,thiswindow,options);
		helpwindow.focus();
	//} else {
		//helpwindow=window.open(thispage,thiswindow,'width=190,height=480,toolbar=0,location=0,status=1,menubar=0,resizable=1');
	//}
}
function fitscreen(){
	if (document.all) {
		windowheight = screen.availHeight;
		rightwidth=190;
		leftwidth=screen.availWidth-rightwidth-11;
		window.resizeTo(leftwidth,windowheight);
		window.moveTo(0,0);
		//opener.top.focus();
		top.focus();
	} 
}
