<!--
function createRequestObject(){
	if (navigator.appName == 'Microsoft Internet Explorer') {
		return new ActiveXObject('Microsoft.XMLHTTP');
	}	else {
		return new XMLHttpRequest();
	}
}

function ajax (obj, my_source){
 var http = createRequestObject();
 http.open('get', my_source);

 http.onreadystatechange = function(){
 	if (http.readyState == 4) {
 		document.getElementById(obj).innerHTML = http.responseText;
 	}
 }
	http.send(null);
}

function resizeWindow(){
 nWidth  = document.images[0].width;
 nHeight = document.images[0].height;
 
 if (window.innerWidth) {
  window.innerWidth  = nWidth;
  window.innerHeight = nHeight;
 }else if(document.all){
  window.resizeTo(nWidth, nHeight);
  //nWidth  -= (document.body.clientWidth - nWidth);
  //nHeight -= (document.body.clientHeight - nHeight);
  //window.resizeTo(nWidth, nHeight);
 } 
}
// -->