// JavaScript Document
function showCalc(calc){
	var pWidth = ( ((parseInt(screen.width) / 2)) - 200 );
	var pHeight = (((parseInt(screen.height) / 2)) -240);
	window.open('calculators/' + calc,'hello',"width=585,height=530,left=" + pWidth + ",top=" + pHeight);
}
