function openwindow (tourl,id,param) {
  newwin = window.open(tourl, id, param);
  newwin.focus();
}

function openSecureFrame(link, element) {
	var oFrame = document.getElementById(element);
	oFrame.src = link;
	oFrame.style.height = "150px";
}
