/*Copyright 1998 by Ray Stott - ver 1.0. 
OK to use on noncommercial sites as long as copyright is included. 
Script is available at http://www.erols.com/crays/js.htm 
       
var PopWin = null    
var winCount = 0
var winName = "PopWin"
function openPopWin(winURL, winWidth, winHeight, winFeatures){
  winName = "PopWin" + winCount++ 
  closePopWin()           
  if (openPopWin.arguments.length == 4)
    winFeatures = "," + winFeatures
  else 
    winFeatures = "" 
  PopWin = window.open(winURL, winName, "width" + winWidth 
           + ",height" + winHeight + winFeatures)
  }

function closePopWin(){ 
  
    if(PopWin != null) if(!PopWin.closed) PopWin.close() 
  }
*/

var PopWin = null; 
var winCount = 0;
var winName = "PopWin";
function openPopWin(winURL, winFeatures){
winName = "PopWin" + winCount++;
closePopWin();
winFeatures = "scrollbars=yes,location=yes,resizable=yes,toolbar=yes,width=630,height=350,top=2,left=30"
PopWin = window.open(winURL, winName, winFeatures)}

function closePopWin(){ 
if( (parseInt(navigator.appVersion)>=3 &&
    navigator.appName=="Netscape") ||
    (parseInt(navigator.appVersion)>=4 &&
    navigator.appName=="Microsoft Internet Explorer") )
if(PopWin != null) if(!PopWin.closed) PopWin.close()
}

/* help */
function helpEn(){
openPopWin("Selailuohjeet.php3#Navigation")}

/* Common */
function Instructions(){
openPopWin("AttributesInst.php3")}
function Help(){
openPopWin("Attributes.php3")}
function HelpWML(){
openPopWin("wml.php3")}
function i18n(){
openPopWin("Attributes.php3#i18n")}
function coreattrs(){
openPopWin("Attributes.php3#coreattrs")}
function reserved(){
openPopWin("Attributes.php3#reserved")}
function PCDATA(){
openPopWin("Attributes.php3#PCDATA")}
function Tour(){
openPopWin("AttributesHTML10.php3")}

/* Declarations and elements */

function Declarations(){
openPopWin("AttributesWMLNotes.php3#Declarations")}
function wml(){
openPopWin("AttributesWMLNotes.php3#wml")}
function template(){
openPopWin("AttributesWMLNotes.php3#template")}
function HTML(){
openPopWin("AttributesWMLNotes.php3#HTML")}
function HEAD(){
openPopWin("AttributesWMLNotes.php3#HEAD")}
function META(){
openPopWin("AttributesWMLNotes.php3#META")}
function COMMENT(){
openPopWin("AttributesWMLNotes.php3#COMMENT")}
function PRE(){
openPopWin("AttributesWMLNotes.php3#PRE")}
function P(){
openPopWin("AttributesWMLNotes.php3#P")}
function DL(){
openPopWin("AttributesWMLNotes.php3#DL")}
function TABLE(){
openPopWin("AttributesWMLNotes.php3#TABLE")}
function TR(){
openPopWin("AttributesWMLNotes.php3#TR")}
function A(){
openPopWin("AttributesWMLNotes.php3#a")}
function EM(){
openPopWin("AttributesWMLNotes.php3#EM")}
function BR(){
openPopWin("AttributesWMLNotes.php3#BR")}
function IMG(){
openPopWin("AttributesWMLNotes.php3#IMG")}
function FIELDSET(){
openPopWin("AttributesWMLNotes.php3#FIELDSET")}
function doEl(){
openPopWin("AttributesWMLNotes.php3#do")}
function go(){
openPopWin("AttributesWMLNotes.php3#go")}
function INPUT(){
openPopWin("AttributesWMLNotes.php3#INPUT")}
function SELECT(){
openPopWin("AttributesWMLNotes.php3#SELECT")}
