function interactive(page) {
	switch (page) {
		case "activevspassivelearning":
			h = 544; w = 800; break;
		case "alcohol":
			h = 400; w = 700; break;
			
		case "alcohol2":
			h = 525; w = 700; break;
		case "alcohol3":
			h = 535; w = 700; break;
			
		case "alcohol4":
			h = 300; w = 680; break;
		case "alcoholjackanddiane":
			h = 525; w = 700; break;
		case "alcoholtrueorfalse":
			h = 300; w = 680; break;
		case "anxiety":
			h = 495; w = 720; break;	
		case "bac":
			h = 370; w = 670; break;	
		case "burnout":
			h = 420; w = 670; break;	
		case "cheatingandplagiarism":
			h = 500; w = 800; break;
		case "classetiquette":
			h = 370; w = 720; break;
		case "gameoflife":
			h = 540; w = 856; break;
		case "criticalthinking":
		case "diversity":
		case "goals":
		case "nutrition":
		case "reading":
		case "resources":
		case "timemang":
			h = 531; w = 615; break;
		case "depression":
			h = 420; w = 670; break;		
		case "depression2":
			h = 800; w = 430; break;
		case "grammar":
			h = 402; w = 780; break;
		case"greek":
			h = 400; w = 740; break;
		case "highschoolvscollege":
			h = 531; w = 720; break;
		case "memory":
		case "memory_part2":
			h = 514; w = 611; break;
		case "personality_learning":
			h = 531; w = 611; break;
		case "roommateetiquette2":
			h = 500; w = 800; break;
		case "std":
			h = 600; w = 800; break;
		case "stressmuch":
			h = 500; w = 800; break;
		case "virtualbar":
			h = 514; w = 611; break;
		case "workplaceetiquette":
			h = 539; w = 800; break;
		case "symptomchecker":
			h = 450; w = 685; break;
		case "std_nyu":
			h = 400; w = 650; break;
		default:
			h = 650; w = 900; break;
	}
	if(page=="bac" || page=="burnout" || page=="gameoflife" || page=="depression" || page=="std" || page=="classetiquette" || page=="symptomchecker" ) {
		url = "http://www.goalquest.com/interactive/"+page;
		settings = "height="+h+", width="+w+",top=100,left=100,window.locationbar.visible=false,toolbar=no,menubar=no,location=no,directories=no,scrollbars=no,resizable";
		win = window.open(url,'PSC',settings);	
	}
	else {
		url = "http://www.goalquest.com/interactive/files/"+page+".html";
		settings = "height="+h+", width="+w+",top=100,left=100,window.locationbar.visible=false,toolbar=no,menubar=no,location=no,directories=no,scrollbars=no,resizable";
		win = window.open(url,'PSC',settings);
	}
}

