

function switchToLogin(){
 window.top.location = "index.php?logout=true";
}



function goTo(url){
 window.top.location = url;
}

function setFrameHeight(id,objHeight){
 parent.document.getElementById(id).style.height = document.getElementById(objHeight).offsetHeight + 40 + "px";
}


function doPrint(){
	var printButton = document.getElementById("printButton");
	printButton.style.display = "none";
	window.print();
	document.forms[0].submit();	
}

function callback() {
	window.opener.parent.location='trainingmade-thankyou.php';
	window.close();
}