//<?php
/**
*	@package	JavaScript
*	@author		Jan Maz�nek <jan.mazanek@abeo.cz>
*	@copyright	1993-2005 Abeo s.r.o.
*	@since		20050402, verze 0.0.2
*	@internal	charset: utf-8
*	@version	SVN: $Id: window-open.js 7330 2007-08-11 19:25:57Z jan-mazanek $
*/

/**
*/
function windowOpen(URI, name, extra)
{	if(w=window.open(URI,name,extra)) {
		if(window.focus) {
			w.focus();
		}
		return true;
	}
	return false;
}

function imgOpen(URI, width, height)
{	var name=	'fotogalerie_img';
	var extra=	'toolbar=no,location=no,scrollbars=yes,directories=no,status=no,menubar=no,resizable=yes'
		+',width='+width
		+',height='+height
		+',left=1,top=1'
		+',screenX=1,screenY=1'
		+',dependent=yes';
	return windowOpen(URI,name,extra);
}
//?>