var flagReset = 0;

function stopSShow(){
	if(lockLFBanners)
		clearInterval(runLFBanners);
}
function callForm(url){
	flagReset = 1;
	var console_form = '<div style="text-align:right;margin:10px 10px 7px 0"><a href="javascript:closeForm();" style="position: relative; top: -4px;">Close</a> <a href="javascript:closeForm();"><img src="/images/discovery/btn_close.gif" width="18" height="18" alt="" /></a></div><iframe frameborder="0" src="/start-exploring/'+url+'" scrolling="no" style="margin:0;width:758px;height:285px"></iframe>';
	$('#iframe_wrapper').html(console_form);
	$('#iframe_wrapper').css({display:''});
	if($.browser.safari){
		if(document.body.scrollTop != 0)
			document.body.scrollTop = 0;
	}
	else{
		if(document.documentElement.scrollTop != 0)
			document.documentElement.scrollTop = 0;
	}
}

function closeForm(){
	$('#iframe_wrapper').css({display:'none'});
	$('#iframe_wrapper').html('');
	flagReset = 0;
	ResetFirst();
}