//============================================================
// show_page.js
//
// Description:
// JavaScript include for the Web4All2 CMS project
// Global CMS routines
//
// Copyright © 2002 Centric e-Technology
// Created : Aswin Lange   26-11-2002
// Modified:
// ============================================================

//---------- Constants ----------

//---------- Private variables ----------

//---------- Private classes ----------

//---------- Private methods ----------

//---------- Public methods ----------

function SHOW_PAGE_ShowLinkPage(sURL)
{
	window.open(sURL, '', ''); //toolbar=0; resizable=1; scrollbars=1
}

