//=======================================================================
// fonction open window
//=======================================================================


function jsOpenNewWin(url,w,h) {
	var w = window.open(url,"win","width=" + w + ",height=" + h + ",top=100,left=100,scrollbars=yes");
}

function jsOpenWindow(url,w,h) {
	var nx = (screen.Width / 2) - (w / 2);
	var ny = (screen.Height / 2) - (h / 2);

	var w = window.open(url,'win','width=' + w + ',height=' + h + ',left=' + nx + ',top=' + ny + ',resizable=yes');
}