var error_state = false;

var scroll = 0;
var window_h = 0;
var error_height = 0;
var msg_pos = 0;
var height;

$(document).ready(function() {
		$("#error-bg").hide();
		$("#error").hide();

		$("#error-bg").click(function(){
		
			$("#error-bg").slideUp();
			$("#error").slideUp();
			error_state = false;
			
		})

		
	
});

function error(msg, msg_type){
	

	height = $(document).height();
	$("#error-bg").height(height);
	
	
	
    scroll = $(document).scrollTop();
	
	window_h = $(window).height();
	window_h = window_h/2;
	
	error_height= $("#error").height();
	error_height = error_height/2;
	
	msg_pos = (window_h + scroll)-error_height;
	
	$("#error").css({top:msg_pos,});
	
	
	

	
	if (error_state == false){
		$("#error-bg").slideDown();
		$("#error").slideDown();
		error_state = true;
	}else{
		$("#error-bg").slideUp();
		$("#error").slideUp();
		error_state = false;
		
	}
	
	if (msg_type == "cleaning"){
		$("#error-msg").html(msg);
		$("#head-text").html("CARE INSTRUCTIONS");
	}else if (msg_type == "size_guide"){
		$("#error-msg").html('<iframe src="sizeguide.asp" width="700" height="340">');
		$("#head-text").html('<p style="text-align:center;">SIZE GUIDE</p>');
	}else if (msg_type == "twelve"){
		$("#error-msg").html('<iframe src="2012content.asp" width="450" height="240">');
		$("#head-text").html('<p style="text-align:center;">SORRY</p>');
	}else if (msg_type == "delivery"){
		$("#error-msg").html('<iframe src="delivery-min.asp" width="400" height="240">');
		$("#head-text").html('<p style="text-align:center;">DELIVERY</p>');
	}else if (msg_type == 'size_error'){
		$("#error-msg").html('<p>PLEASE SELECT A SIZE');
		$("#head-text").html('<p style="text-align:center;">SELECT A SIZE</p>');
	}else if (msg_type == 'coming-soon'){
		$("#error-msg").html('<p>COMING SOON...');
		$("#head-text").html('<p style="text-align:center;">COMING SOON</p>');
	}else if (msg_type == 'christmas'){
		$("#error-msg").html('<p>Shopping for Christmas? Then orders must be placed before the dates below depending on the destination of the goods. Orders dispatched by these times are expected to arrive before christmas.</p><p>UK- 20th December<br/>South & Central America, Caribbean, Africa, Middle East, Asia, Far East (including Japan), Australia and New Zealand- 5th December<br/>Eastern Europe, USA and Canada- 9th December<br/>Western Europe- 12th December<p><p>for more information contact <a href="mailto:info@selfclothing.com?subject=Christmas Shipping Query">info@selfclothing.com</a></p>');
		$("#head-text").html('<p style="text-align:center;">CHRISTMAS POST</p>');
	}
	
		
		
}
