/*-----------------------------------------------------------*\
|
|	launchwin.js
|
\*-----------------------------------------------------------*/


var launchwin = function(url, name, w, h, features) {
		popUp = window.open(url, name, 'width='+ w +',height='+ h +','+ features);
		if(popUp.moveTo) popUp.moveTo((screen.width - w) * .5, (screen.height - h) * .5);
		if(popUp.focus) popUp.focus();
}