/*
'####################################################################################
'# © Copyright 2008 Netfactors Internet (www.netfactors.co.uk). All rights reserved. #
'#----------------------------------------------------------------------------------#
'# This library of routines has been developed by Netfactors Internet and is         #
'# partially customised for use on the API Directory website                        #
'# (apidirectory.buildingforleisure.co.uk) and licensed for free use by Stable      #
'# Publishing for a time indefinite period.                                         #
'# Copyright of the library and any routines therein remains the property           #
'# Netfactors Internet. In the event of any amendments by third parties, this        #
'# copyright notice must be kept intact, with comments added to indicate such       #
'# amendments.                                                                      #
'####################################################################################
*/

function doPopupWin() {
	window.open('','popupwin','width=700,height=600,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=no');
}

function printPage() {
	if (allowPrint) {
		window.print();
	}
}

function closeWindow() {
	window.close();
}

