
<!--



/* Opens any URL in a basic popup */
/*                                */
/* If we specify 0 for the width then it becomes 400px wide      */
/* If we specify 0 for the height it sets total available height */
/*                                                               */
/* Example call: onClick="make_a_popup('http..', 600, 0, 1);"    */


function make_a_popup(url, width, height, scrollbars) {


	if (typeof url=="undefined") { return false; }


	var screenheight = screen.height - 30;

	width  = (width < 1)  ? 400 : width;
	height = (height < 1) ? screenheight : height;
	scrollbars = (scrollbars < 1) ? 0 : 1;


//	window.open(url,'myownpopup','"height=' + height + ',width=' + width + ',left=200,top=190, scrollbars=' + scrollbars + '"');
	window.open(url,'myownpopup','height=' + height + ',width=' + width + ',left=150,top=100,resizable=1,menubar=0,location=0, scrollbars=' + scrollbars);


	return true;


}



// -->

