// JavaScript Document
function makeactive(iden){
	//alert(iden);
	//document.getElementById(iden).className="active";
	
	}
	
	
	function makeinactive(iden1){
	//alert(iden);
//	document.getElementById(iden1).className="inactive";
	
	}
	var newwindow;
	function poptastic(url)
{
	newwindow=window.open(url,'name','height=400,width=400');
	if (window.focus) {newwindow.focus()}
}

