if (!isMobile()){
	document.write('<link rel="stylesheet" type="text/css" href="/styles/style.css" />');
} else {
	document.write('<link rel="stylesheet" type="text/css" href="/styles/mobile.css" />');
}

$(function() {
	pageReady();
});

function isMobile(){
	var useragent = navigator.userAgent;
	useragent = useragent.toLowerCase();
	if (useragent.indexOf('iphone') != -1 || useragent.indexOf('symbianos') != -1 || useragent.indexOf('ipad') != -1 || useragent.indexOf('ipod') != -1 || useragent.indexOf('android') != -1 || useragent.indexOf('blackberry') != -1 || useragent.indexOf('samsung') != -1 || useragent.indexOf('nokia') != -1 || useragent.indexOf('windows ce') != -1 || useragent.indexOf('sonyericsson') != -1 || useragent.indexOf('webos') != -1 || useragent.indexOf('wap') != -1 || useragent.indexOf('motor') != -1 || useragent.indexOf('symbian') != -1 ){
		return true;
	} else {
		return false;
	}
}

function ajaxOpenDialog(url, width, height){
	$("#ajax-form").dialog({
		autoOpen: false,
		modal: true,
		resizable: false,
		draggable: false,
		width: width,
		height: height,
		show: {effect: "fade", duration: 1500},
		hide: {effect: "fade", duration: 500}
	});
	$("#ajax-form").html('<iframe style="border: 0px;" src="'+url+'" width="100%" height="100%" frameborder="0"></iframe>');
	$("#ajax-form").dialog('open');
}

function gup(name){
	name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
	var regexS = "[\\?&]"+name+"=([^&#]*)";
	var regex = new RegExp(regexS);
	var results = regex.exec(window.location.href);
	if(results == null){
		return "";
	} else {
		return results[1];
	}
}
