// JavaScript flashparameter receptor
// Modify this to fit with the design.
// Just remember to always add the parameters to the request

/*
 Receives startangle (sa) and endid (ei) and language (l) from flash when an object is clicked
 */
function addParams(sa, ei, l) {
	var target = 'default.asp';
	var pstring = 'sa=' + sa + '&ei=' + ei + '&l=' + l;
	document.location = target + '?' + pstring;
}
