/*
********************************************************
********************************************************

	created & coded by studiosdigital
	www.studiosdigital.com
	© 2004


********************************************************
********************************************************
*/

/******  function for opening popup window  ******/

function OpenBrWindow(theURL,winName,features) {

	var screenX, screenY;

	screenY = screen.width;
	screenX = screen.height;
	//alert("screenY = " + screenY + " ; screenX = " + screenX);
	window.open(theURL,winName,features);
	//window.open("index.htm","jusdoit","width=800,height=600,scrollbars=no,status=no");
}