function popupWin(page, type){
	var path;  // path to file
	var ext;   //file extention
	
	// Check if the chapter is less than 10 to set the correct path
	if (type=="quiz"){
		if (chap<10){
			path='quizzes/ch0'+chap+'/ch0'+chap+page; //ch01els_quiz.htm
		}else{
			path='quizzes/ch'+chap+'/ch'+chap+page;
		}
	}else{
		if (chap<10){
			path='assets/ch0'+chap+'/'+page;
		}else{
			path='assets/ch'+chap+'/'+page;
		}
		}
	// Check to see what type of popup it is so it gets the correct extention
	if (type=="ppt"){
		ext='.ppt';
		path+=ext;
		window.open(path, 'pptWin', 'toolbar=no,location=no,menubar=no,resizable=yes,scrollbars=no,status=yes, width=800,height=600');
	}
	if (type=="concept"){
		ext='.htm';
		path+=ext;
		window.open(path, 'ccWin', 'toolbar=no,location=no,menubar=no,resizable=yes,scrollbars=no,status=yes, width=400,height=125');
	}
	if (type=="concept2"){
		ext='.htm';
		path+=ext;
		window.open(path, 'ccWin', 'toolbar=no,location=no,menubar=no,resizable=yes,scrollbars=no,status=yes, width=400,height=520');
	}
	if (type=="concept3"){
		ext='.htm';
		path+=ext;
		window.open(path, 'ccWin', 'toolbar=no,location=no,menubar=no,resizable=yes,scrollbars=no,status=yes, width=400,height=320');
	}
	if (type=="concept4"){
		ext='.htm';
		path+=ext;
		window.open(path, 'ccWin', 'toolbar=no,location=no,menubar=no,resizable=yes,scrollbars=no,status=yes, width=400,height=220');
	}
	if (type=="key"){
		ext='.htm';
		path+=ext;
		window.open(path, 'ccWin', 'toolbar=no,location=no,menubar=no,resizable=yes,scrollbars=no,status=yes, width=400,height=125');
	}
	if (type=="video"){
		path='videos/';
		window.open(path+'rmtemplate.htm?video='+page, 'videoWin', 'toolbar=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes, width=500,height=515');
	}
	if (type=="photo"){
		ext='.htm';
		path+=ext;
		window.open(path, 'photoWin', 'toolbar=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes, width=800,height=600');
	}
	if (type=="pwlink"){
		window.open('http://www.dushkin.com/olc/genarticle.mhtml?article=' + page, 'linkWin', 'toolbar=yes,location=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes, width=800,height=600');
	}
	if (type=="link"){
		window.open(page, 'linkWin', 'toolbar=yes,location=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes, width=800,height=600');
	}
	if (type=="quiz"){
		ext='.html';
		path+=ext;
		window.open(path, 'quizWin', 'toolbar=no,location=no,menubar=no,resizable=yes,scrollbars=no,status=yes, width=620,height=425');
	}
}
