// script for pop-up window

function lauchcourse(path){
	var xPos = screen.width/2 - 400;
	var yPos = screen.height/2 - 300;
	var params='toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=800, height=560, left='+ xPos +', top='+ yPos;
	var hWindow = window.open(path,"course", params);
	hWindow.focus();
}

