var newWindow;

function popUp(url, w, h){
	newWindow = window.open(url,"img", 'height='+h+',width='+w);
	if (window.focus){
		newWindos.focus();
	}
	
}