// The following code is from http://www.southerntwilight.com/tutorials/popup.html# 
// and then modified to accept variable representing any page-link.  The page-link
// is converted to a string and the string is incorporated into the windows object.
// You are free to use this code as long as ALL lines including comments and 
// the copyright are included.
// Copyright (c) 2001-2003 Copyright Southern Twilight and
// Copyright (c) 2004 Info Haven Productions, Inc.

var varLink;

function classpage(varLink) {	

// Window object has 3 requirements: html page, name of page, and size/scrolling/etc
// Third requirements consist of the following:
// width, height, menubar, status(bar), scrollbars, resizable, toolbar, location(addressbar)
new_win = window.open(
	varLink,
	'',
	', , menubar=no, status=no, scrollbars=yes, resizable=yes, toolbar=no, location=no'); 
}
