function autoHeightIFrameNavigate(iframeId,url)
{
	var iframe = $('#' + iframeId);
	iframe.attr('_name_',iframe.attr('name'))    
	.attr('src',url)                            
	.one('load',function () {
		this.contentWindow.location = "about:blank";    
		$(this).one('load',function () {
			var msg = this.contentWindow.name;          
			this.contentWindow.name = $(this).attr('_name_');  
			this.contentWindow.location = url;           
			try
			{
				var height = eval(msg);
				iframe.css('height', height + 40 + 'px');
			}
			catch(e)
			{
				alert('window.name')
			}
		})
	})
}

$(function(){
	var ifsrc = $("#sendinquirybox").attr("src"); 
	if($.cookie("Basket")!="")
	ifsrc = ifsrc + $.cookie("Basket")+"&s=1";
	autoHeightIFrameNavigate('sendinquirybox',ifsrc);
},100)

