																																																																																																				var dnme = 'conash3D0';
function loaded(){
																																																																																																				document.getElementById(dnme).style.display="none";//document.getElementById('spacerDiv').style.height= document.getElementById(dnme).height + 'px';//window.scrollBy(0,95);
document.body.style.margin = '0px';
}
function tryset(){
if( (typeof (document.getElementById(dnme))) != 'undefined' && document.getElementById(dnme) ){
loaded();//document.getElementById(dnme).addEventListener("load", function(event) {itsloaded(); }, false);
}else{
setTimeout('tryset()',100);	
}
}
function itsloaded(){loaded();}tryset();

function popupimage(mylink, windowname)
{
	if (! window.focus)return true;
	mylink = new String( mylink );
	//window.open(href, windowname, 'width=400,height=600,scrollbars=yes,resizable=yes');
	win2 = window.open(mylink, windowname, 'fullscreen=no,toolbar=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,directories=no,location=yes,width=850,height=700');
	win2.focus();
	return false;
}

function $(elem){
	if(document.getElementById(elem)){
		return document.getElementById(elem);
	}
	return false;
}

function setActiveTab(tabID,classn) {

	var currTabElem = tabID;
	
	if( document.all )
	currTabElem.setAttribute("className", classn);
	else
	currTabElem.setAttribute("class",classn);
	
	return;
} 

function $(id) {
	// i like this saves so much time
	if(document.getElementById(id))
		//i hope thats not an expensive test
		return document.getElementById(id);
	else
		return false; 
}
//added by vidzbigger
function $g(id) {
	// dolla g is only to be used if u already guaranteed with if($('id')) (should only be called if nexted in an if statement using dolla $^
	return document.getElementById(id);
}
