// JavaScript Document
function setPage(pageid) {
	parent.page = pageid;
}

function exit(){
	window.top.close();
}

function MM_openBrWindow(theURL,winName,features){
  window.open(theURL,winName,features);
}

function openWindowOnClose () {
	var closeTrue  = confirm("Are you sure you want to exit the course?");
	if (closeTrue == true) {
		this.close();
	}
	//this.close();
	//var newWin;
	//newWin = window.open('http://changeme.com/change.html', 'newWin');
}
	
function openSurvey () {
	var newWin;	
	newWin = window.open( 'http://www.surveysolutions.com/honda/wbtevaluation.htm',"testWindow",'STATUS=0,DIRECTORIES=0,LOCATION=0,TOOLBAR=0,SCROLLBARS=Yes,MENUBAR=0');
}


