jQuery.noConflict();

jQuery(function(){
	document.getElementById("jstylefont").href = jQuery.cookie('stylefont');
});

function jstylefont(cssurl){
	document.getElementById("jstylefont").href = cssurl;
	jQuery.cookie('stylefont',cssurl,{expires:30,path:'/'});
}

function disp1(url){
	window.open(url, "window01", "width=520,height=540,scrollbars=yes");
}
function disp2(url){
	window.open(url, "window02", "width=520,height=710,scrollbars=yes");
}


var target = "";
function jump(){
	var url = document.featurelink.select.options[document.featurelink.select.selectedIndex].value;
	if(url != "" ){
		if(target == 'top'){
			top.location.href = url;
		}
		else if(target == 'blank'){
			window.open(url, 'window_name');
		}
		else if(target != ""){
			eval('parent.' + target + '.location.href = url');
		}
		else{
			location.href = url;
		}
	}
}
