/* 
   This script is meant to be a common javascript file for all of VALA.
   Any functions that might be used again should go in this file along with 
   descriptions of those functions.
*/

/**
 * The instWindow function is good for opening small instruction windows.
 * See the instructions subdirectory of VALA for examples.
 */
function instWindow(urlString) {
	myWindow = window.open(urlString,'Instructions','width=600, height=200, toolbar=no, location=no, resizable=yes, scrollbars=yes')
}
function sizableInstWindow(urlString,width,height) {
	myWindow = window.open(urlString,'Instruciones','width='+width+', height='+height+', toolbar=no, location=no, resizable=yes, scrollbars=yes')
}