function openReminder (pageId) {
	var url;
	var specs;
	var width;
	var height;
	var scr;
	var winName = pageId;
	
 if (pageId=='email'){
   scr='0';
   width='400';
   height='270';
   url='/classroom/victorianreborn/reminder';
   }
   
 if (pageId=='mobile') {
   scr='0';
   width='610';
   height='420';
   url='http://gold.eventmatrix.com/EMCGWebTemplate/Main.aspx?ProducerId=10140&EventId=10102';
   }
   
   specs = 'toolbar=0,location=0,status=0,menubar=0,scrollbars=' + scr + ',resizable=0,width=' + width + ',height=' + height;

   window.open(url, winName, specs);
}
