
<!-- Hide from JavaScript-Impaired Browsers

function popUpWin(url) {
	var args = "resizable,scrollbars,menubar,top=40,left=200,width=714,height=450";
	var win = open(url,"subWin",args);
	// Set focus to new window, so it doesn't get sent to the background
	win.focus();
	// return true;
}

function download_instructions() {
	var msg = "Follow these instructions to download the image:\n";
	
	msg+= "1. Click the 'OK' button below.  A new window will open with a full size image\n";
	msg+= "2. In the new window, go to the FILE MENU and select SAVE AS\n";
	msg+= "3. Save the image to your desired location";
	
	if (confirm(msg))
		return true;
	else
		return false;
}

// End hiding -->
