function resizeDiv(width, height, divId) {
  // width = '100%' OR height = '360px' ... with measure
	// document.getElementById(divId).style.width = width;
	// document.getElementById(divId).style.height = height;

  if(document.all && !document.getElementById) {
 		document.all[divId].style.pixelWidth = width;
 		document.all[divId].style.pixelHeight = height;
	}else{
		document.getElementById(divId).style.width = width;
		document.getElementById(divId).style.height = height;
	}
}
