jQuery('document').ready(function(){
	jQuery("#windowHider").css('opacity',0);
	jQuery('#submitShipping').submit(function(event){
		if (jQuery('input[type=radio][name=shipping]').size()==0){
			if (jQuery('input[name=shipping]').attr('value')=='socolissimo_socolissimo'){
				if (!document.soColissimoOk){
					event.preventDefault();
					openModalWindow();
					openIFrame();
				}
			}
		}
		if (jQuery('input[type=radio][name=shipping]:checked').attr('value')=='socolissimo_socolissimo'){
			if (!document.soColissimoOk){
				event.preventDefault();
				openModalWindow();
				openIFrame();
			}
		}
	});
	jQuery('img.windowHiderCloseImg').click(function(){
		closeModalWindow();
	});
	jQuery(window).resize(function(){
		jQuery("#windowHiderContent").css('height',Math.max(730,jQuery(window).height()-30));
		jQuery("#iFrameColissimo").css('height',Math.max(700,jQuery(window).height()-30-44));
	})
});

function openModalWindow(){
	jQuery("#windowHider").css('height',jQuery(document).height());
	jQuery("#windowHider").css('width',jQuery(window).width());
	jQuery("#windowHider").css('display','block');
	jQuery("#windowHider").css('opacity','0');
	jQuery("#windowHider").fadeTo('slow',0.9);
	jQuery("#windowHiderContent").css('left',(Math.min(jQuery(window).width(),jQuery(document).width())-Math.max(jQuery("#windowHiderContent").width(),1000))/2);
	jQuery("#windowHiderContent").css('top',20);
	jQuery("#windowHiderContent").css('height',Math.max(730,jQuery(window).height()-30));
	jQuery("#windowHiderContent").css('width',1000);
	jQuery("#iFrameColissimo").css('height',Math.max(700,jQuery(window).height()-30-44));

}
function closeModalWindow(){
	jQuery("#windowHider").fadeOut('slow',function(){
		jQuery("#windowHider").css('height',0);
		jQuery("#windowHider").css('width',0);
		jQuery("#windowHiderContent").css('left',0);
		jQuery("#windowHiderContent").css('top',0);
		jQuery("#windowHiderContent").css('width',0);
		jQuery("#windowHiderContent").css('height',0);
	});
}
function confirmSubmit(){
	jQuery('#submitShipping').submit();
}
function warningColissimo(){
	jQuery('#windowHiderContent').html('Erreur lors de votre choix de mode de Livraison<br><a class="linkForSoColissimo">Réessayer</a> | <a href="javascript:closeModalWindow()">Abandonner</a>')
}
function openIFrame(){
	if (jQuery.browser.msie){
		document.location='shipping_so_colissimo.php?send';
	}
	else {
		document.getElementById('iFrameColissimo').src='shipping_so_colissimo.php?send';
	}
}
