var win= null;

function OpenNewWindow(w,h){
	
	var winl = (screen.width-w)/2;
	var wint = (screen.height-h)/2;
	
	settings = 'scrollbars=yes','height='+h+',width='+w+',top='+wint+',left='+winl+'resizable=0'
	
	win=window.open('/easyconsole.cfm/page/feedbackform','feedback', settings)
	
	if (parseInt(navigator.appVersion) >= 4){
		win.window.focus();
	}
}

function printpage() {
	window.print();
}

function currency() {
	  TopDistance = (screen.height/2)-300;
	  LeftDistance = (screen.width/2)-200;
	  wn=window.open('/utils/currency.cfm','currency','width=400,height=320,left='+LeftDistance+',top='+TopDistance);
}