/**
* Resizes the preview iframe when the window resizes.
*/
function onWindowResize() {
/*	var h;
	if( typeof( window.innerHeight ) == 'number' ) {
		h = window.innerHeight;
	} else if( document.documentElement && document.documentElement.clientHeight ) {
		//IE 6+ in 'standards compliant mode'
		h = document.documentElement.clientHeight;
	} else if( document.body && document.body.clientheight ) {
		//IE 4 compatible
		h = document.body.clientHeight;
	}
	h -= $('#head_section').attr('height');
	$('#scroller').attr( 'height', h );*/
} 
