// JavaScript Document


function popandlockbaby(url,width,height)
{
	var newwindow;
	newwindow=window.open(url,'name','height='+height+',width='+width);
	if (window.focus) {newwindow.focus()}
}
