if (navigator.appVersion.indexOf("Mac") !=-1){  
document.write("<link rel=stylesheet href=css/import_mac.css type=text/css />");
document.write("<link rel=stylesheet href=../css/import_mac.css type=text/css />");
document.write("<link rel=stylesheet href=../../css/import_mac.css type=text/css />");
}


// -----------------------------------------------
// open new window
// -----------------------------------------------
function openNewWin1(url, name, w, h) {
	var newWin;
	var options = "toolbar=no,menubar=no,status=yes,scrollbars=no,resizable=no";
	newWin = window.open(url, name,"width=" + w + ",height=" + h + options);
	newWin.focus();
}

function openNewWin2(url, name, w, h) {
	var newWin;
	var options = "toolbar=no,menubar=yes,status=yes,scrollbars=yes,resizable=yes";
	newWin = window.open(url, name,"width=" + w + ",height=" + h + options);
	newWin.focus();
}

function openNewWin3(url, name, w, h) {
	var newWin;
	var options = "toolbar=no,menubar=no,status=yes,scrollbars=yes,resizable=yes";
	newWin = window.open(url, name,"width=" + w + ",height=" + h + options);
	newWin.focus();
}

function openNewWin4(url, name, w, h) {
	var newWin;
	var options = "toolbar=no,menubar=yes,status=yes,scrollbars=yes,resizable=yes";
	newWin = window.open(url, name,"width=" + w + ",height=" + h + options);
}

