var obj_top_001=0;
var is_it_pop_up=false;
//--------------------------
$(document).ready(function() {
	//-------
	i=Get_Cookie('popupwindowblock');
	switch(i) {
		case 1:
		is_it_pop_up=true;
		break;
		case 0:
		is_it_pop_up=false;
		break;
	}
	if(i==null) {
		Set_Cookie('popupwindowblock', 1, 1, '/');
		is_it_pop_up=true;
		window.open('../jquery/survey/survey_is_now.php','s', 'channelmode=no, directories=no, fullscreen=no, height=1, left=0, location=no, menubar=no, resizable=no, scrollbars=no, status=no, titlebar=no, toolbar=no, top=0, width=1');
	}
	//-------
	setTimeout('lyr_show_layer()',120000);
	//-------
});
//--------------------------
function lyr_show_layer() {
	if(is_it_pop_up) {
		lyr_001_show();
	}
}
//--------------------------
function lyr_is_it_pop_up_true() {
	Set_Cookie('popupwindowblock', 0, 1, '/');
	is_it_pop_up=false;
}
//--------------------------
function lyr_001_show() {
	$(".body").after('<div style="border:1px solid #A56E50; background-color:#F8EFE4; position:absolute; top:0px;" id="lyr_001"><div style="border:1px solid #F8EFE4; background-color:#A56E50;"><div style="margin-left:782px;width:20px; text-align:center; border:1px solid #F8EFE4;" id="lyr_001_x"><b>X</b></div></div><IFRAME src="../survey.php" scrolling="Yes" height="465px" width="790" frameborder="no"></IFRAME></div>');
	//-------
	$("#lyr_001").css('left',((document.body.clientWidth/2)-403)).hide();
	setTimeout('$("#lyr_001").fadeIn("normal").animate({top: 200}, 1000)',50);
	//-------
	$(window).scroll(function() {
		$("#lyr_001").css('top',(obj_top_001+document.body.scrollTop)+'px');
	});
	$('#lyr_001').mouseup(function() {
		obj_top_001=parseInt($(this).css('top').replace('px',''))-document.body.scrollTop;
	});
	//-------
	$("#lyr_001_x").mouseover(function() {
		$(this).css('cursor','pointer');
	});
	$("#lyr_001_x").click(function() {
		$("#lyr_001").hide();
	});
	//-------
}
//--------------------------
function lyr_survey() {
	if(openPage==false) {
	} else {
		window.open('../survey.php','Survey','width=790, height=465');
	}
}
//--------------------------
function Get_Cookie(check_name) {
	var a_all_cookies = document.cookie.split(';');
	var a_temp_cookie = '';
	var cookie_name = '';
	var cookie_value = '';
	var b_cookie_found = false;

	for (i = 0; i < a_all_cookies.length; i++) {
		a_temp_cookie = a_all_cookies[i].split( '=' );
		cookie_name = a_temp_cookie[0].replace(/^\s+|\s+$/g, '');
		if (cookie_name == check_name) {
			b_cookie_found = true;
			if (a_temp_cookie.length > 1) {
				cookie_value = unescape( a_temp_cookie[1].replace(/^\s+|\s+$/g, '') );
			}
			return cookie_value;
			break;
		}
		a_temp_cookie = null;
		cookie_name = '';
	}
	if (!b_cookie_found) {
		return null;
	}
}
//--------------------------
function Set_Cookie(name, value, expires, path, domain, secure) {
	var today = new Date();
	today.setTime( today.getTime() );
	if(expires) {
		expires = expires * 1000 * 60 * 60 * 24;
	}
	var expires_date = new Date(today.getTime() + (expires));

	document.cookie = name + "=" +escape( value ) +
	( ( expires ) ? ";expires=" + expires_date.toGMTString() : "" ) +
	( ( path ) ? ";path=" + path : "" ) +
	( ( domain ) ? ";domain=" + domain : "" ) +
	( ( secure ) ? ";secure" : "" );
}
//--------------------------