window.onload = function() {
	if(top.location != self.location){
		var iframes = window.parent.document.getElementsByTagName('iframe');
		for (var i=0, l = iframes.length; i < l; i++){
			if(iframes[i].name === window.name){
				var height = document.documentElement.scrollHeihgt || document.body.scrollHeight;
				iframes[i].height = height;
			}
		}
			
	} 
} 

