<!-- // This is for the Flash Quick Tour
function openpopuptour(){
var popurl2="/flash_tour/introduction.html"
win=window.open(popurl2, "", "width=750,height=550,resizable=no")
}
// End Flash Quick Tour -->
<!-- Begin
var expDays = 1; // number of days the cookie should last

var page = "http://www.kqzyfj.com/3f66ft1zt0GILMQPIQGQIHKMQI";
var windowprops = "width=900,height=700,location=yes,toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes,left=0,top=0";
//var windowprops = "width=500,height=400,location=no,toolbar=no,menubar=no,scrollbars=no,resizable=yes,left=185,top=120";

//Function to Parse QueryString
function QSHandler() {
	var qs = location.search.substr(1).split("&");
	this.data = [];
	for(var i = 0; i < qs.length; i++) this.data[qs[i].split("=")[0]] = qs[i].split("=")[1];

this.QueryString = function(x) {
return this.data[x];
	};
} var Request = new QSHandler();
var no_pop = Request.QueryString("no_pop");
document.cookie = "no_popups=1"
// End QueryString Function

function GetCookie (name) {
var arg = name + "=";
var alen = arg.length;
var clen = document.cookie.length;
var i = 0;
while (i < clen) {
var j = i + alen;
if (document.cookie.substring(i, j) == arg)
return getCookieVal (j);
i = document.cookie.indexOf(" ", i) + 1;
if (i == 0) break;
}
return null;
}
function SetCookie (name, value) {
var argv = SetCookie.arguments;
var argc = SetCookie.arguments.length;
var expires = (argc > 2) ? argv[2] : null;
var path = "/";
var domain = (argc > 4) ? argv[4] : null;
var secure = (argc > 5) ? argv[5] : false;
document.cookie = name + "=" + escape (value) +
((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
((path == null) ? "" : ("; path=" + path)) +
((domain == null) ? "" : ("; domain=" + domain)) +
((secure == true) ? "; secure" : "");
}
function DeleteCookie (name) {
var exp = new Date();
exp.setTime (exp.getTime() - 1);
var cval = GetCookie (name);
document.cookie = name + "=" + cval + "; expires=" + exp.toGMTString();
}
var exp = new Date();
exp.setTime(exp.getTime() + (expDays*24*60*60*1000));
function amt(){
var count = GetCookie('count')
if(count == null) {
SetCookie('count','1')
return 1
}
else {
var newcount = parseInt(count) + 1;
DeleteCookie('count')
SetCookie('count',newcount,exp)
return count
   }
}
function getCookieVal(offset) {
var endstr = document.cookie.indexOf (";", offset);
if (endstr == -1)
endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}

function checkCount() {
var count = GetCookie('count');
var pfb = GetCookie('pfb');
if (count == null && pfb == null) {
count=1;
SetCookie('count', count, exp);
// if statement to determine whether or not to open the window //
// Read the cookie property. This returns all cookies for this document.
//var allcookies = document.cookie;
// Look for the start of the cookie named "version"
//var pop_killer = allcookies.indexOf("no_popups=");

if (no_pop != 1) {
	win2=window.open(page, "", windowprops);
	win2.blur();
	window.focus();
}
}
else {
count++;
SetCookie('count', count, exp);
   }
}
//  End -->