$(document).ready(function(){
	// do something clever
});
function popitup(url,height,width) {
	newwindow=window.open(url,'name','height=' + height + ',width=' + width);
	if (newwindow.opener == null) newwindow.opener = self;
	if (window.focus) {newwindow.focus()}
	return false;
}

