var DocRemote = 0;
function makeRemote(url,width,height){
	if (DocRemote) {
		if (DocRemote.closed) {
			DocRemote = 0;
			makeRemote(url,width,height);
		} else {
			DocRemote.location = url;
			DocRemote.resizeTo(width,height);
			DocRemote.focus();
		}
	} else {
		DocRemote = window.open(url,'MyPopup','resizable=no,width='+width+',height='+height);
    	}
}