
// common javascript definitions for site GI_support

var help_URL = "http://ageplay.org/GI_support/help.html";
var definition_URL = "http://backsideoflove.com/glossary.html";

/////////////////////////////////////////////////////////////////////////////////
var popUpWin=0;
function OpenWin(URLStr)	{
	var left  = 00;
	var right = 00;
	var width = 775;
	var height= 575;
	if(popUpWin)  {
		if(!popUpWin.closed) popUpWin.close();
	}
	popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}


/////////////////////////////////////////////////////////////////////////////////
function help (helpStr) {
	OpenWin (help_URL + "#" + helpStr);
}

/////////////////////////////////////////////////////////////////////////////////
function definition (defStr) {
	OpenWin (definition_URL + "#" + defStr);
}



