function resizeMe(width,height) {
	if (window.innerWidth){
		popWidth=window.innerWidth;popHeight=window.innerHeight;
	}else{
		popWidth=document.body.clientWidth;popHeight=document.body.clientHeight;
	}
	var left=(screen.width-width)/2;var top=(screen.height-height)/2;//FIGURE THE CENTER OF THE SCREEN
	self.window.moveTo(left,top)//MOVE THE POPUP TO THE CENTER
	popWidth=width-popWidth;popHeight=height-popHeight;window.resizeBy(popWidth, popHeight);//MAKE THE POPUP THE RIGHT SIZE
}
function resizeThis(width,height) {
	if (window.innerWidth){
		popWidth=window.innerWidth;popHeight=window.innerHeight;
	}else{
		popWidth=document.body.clientWidth;popHeight=document.body.clientHeight;
	}
	var left=(screen.width-width)/2;var top=(screen.height-height)/2;//FIGURE THE CENTER OF THE SCREEN
	self.window.moveTo(left,top)//MOVE THE POPUP TO THE CENTER
	popWidth=width-popWidth;popHeight=height-popHeight;window.resizeBy(popWidth, popHeight);//MAKE THE POPUP THE RIGHT SIZE
}
