// Copyright (c) Alcusoft 2002,
// All rights reserved
//
// All kind of unauthorized use and
// copying of the material on this
// site is prohibited.


function OpenPopUpAudio(url)
{
	NewWin = window.open(url ,'', 'width=320,height=195,resizable');
	NewWin.focus();
}

function OpenPopUpAlcu1(url)
{
	NewWin = window.open(url ,'', 'width=640,height=585,resizable');
	NewWin.focus();
}

function OpenPopUpGallery(url)
{
	NewWin = window.open(url ,'', 'width=640,height=585,resizable');
	NewWin.focus();
}

function OpenPopupSized(url,w,h) {
 
 win = window.open(url, '', PopupProperties(top,w,h));
 win.focus();
}