/**
 *  ==================================================
 *  SoftChalk LessonBuilder
 *  Copyright 2003-2006 SoftChalk LLC
 *  All Rights Reserved.
 *
 *  http://www.softchalk.com
 *  ==================================================
 *	File date: July 18, 2006
 */

 /*
  *************************************************************
  * non-scoring version for non-forced frames
  *************************************************************
  */

function answersWin(myFile, myID, winSpecs) {
	answersWindow = window.open(myFile, myID, winSpecs);
}

function activity_win_close() {
	window.opener = top;
	window.close();
}

function newWin(myFile, myID, winSpecs) {
	activityWin = window.open(myFile, myID, winSpecs);
}

function readit() {
  cookString = "?";
  if(document.cookie != "") {
    theCook = document.cookie.split("; ");
    for (i = 0; i < theCook.length; i ++) {
      cookString += theCook[i] + "&";
    }
  }
}

function cookit() {}

