

	var uAgent = navigator.userAgent.toLowerCase();
	var mobilePhones = new Array('iphone','ipod','android','blackberry','windows ce',
	'nokia','webos','opera mini','sonyericsson','opera mobi','iemobile');
	for(var i=0;i<mobilePhones.length;i++)
	if(uAgent.indexOf(mobilePhones[i]) != -1)
	document.location="http://www.gnsauto.co.kr/Mobile/m_index.asp";

/* call popup */
function callPop(url,name,par) {
	window.open(url,name,par);
}

/*background Change*/
function backgroundChange(value){
	switch(value){
		case 1:
			document.getElementById("container").style.backgroundImage = "url('/Common/images/head/head_line3.gif')"
			break;
		case 2:
			document.getElementById("container").style.backgroundImage = "url('/Common/images/head/head_line1.gif')"
			break;
		case 3:
			document.getElementById("container").style.backgroundImage = "url('/Common/images/head/head_line2.gif')"
			break;
		default:
			document.getElementById("container").style.backgroundImage = "url('/Common/images/head/head_line4.gif')"
			break;
	}	
}

/*history rolloverMenu*/
function rolloverMenu(value){
	for(i=1; i<=4; i++){
		var num = i;
		if(num == value){
			document.getElementById("historyImg0"+i).src = "../Common/Images/tab/tab_history_menu0"+i+"on.gif";
		}else{
			document.getElementById("historyImg0"+i).src = "../Common/Images/tab/tab_history_menu0"+i+".gif";
		}
	}
	
}

/*qr_close*/
function qr_close(){
	document.getElementById("qrcodeId").style.display = "none";
}

