function show_hide_tr(tr_id){
	if (document.getElementById(tr_id).style.display == "none"){
		document.getElementById(tr_id).style.display = "";
	}
	else{
		document.getElementById(tr_id).style.display = "none";
	}
}

function resizeElement(document_id){
	document.getElementById(document_id).style.height = "45px";	
}

function printpage(){
  window.print();
}

function openPage(url){
	window.location = url;	
}

function customLoad(url) {
	var genMsg = "1. This link will redirect your browser to www.smcworld.com.\n2. This software requires a Citrix Client which will auto-install.\n3. Please follow the appropriate prompts. ";
	alert(genMsg); 
	window.open(url);	
}

function onChangeURL(page,identifer,selObj){
	window.location.href=page+"?"+identifer+"="+selObj.options[selObj.selectedIndex].value;	
}

function onChangeLanguage(page,identifer,selObj){
	window.location.href=page+"&"+identifer+"="+selObj.options[selObj.selectedIndex].value;	
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function roll_over(img_name, img_src)
{
	document.getElementById(img_name).src = img_src;
}
