﻿function toggle(el) {
	var togObj = document.getElementById(el);
	if (togObj.style.display == "block" || togObj.style.display == "" ) {
		togObj.style.display = "none";
	}
	else {
		togObj.style.display = "block";
	}
}


function getllink() {
    document.write("<a href=\"/login.aspx\" id=\"llink\"></a>");
}
