/******************************************************************************
 Copyright (c) 2007 Samsung Electronics. All Rights Reserved.
 Project: Samsung.com Site Renewal(2007.01~07)

 File Name : sitecode.js
 Description : get site code form uri
 Author : park do won
 Since : 2007.05.03
 
 Modification Information
 Mod Date        Modifier         Description
 ----------      --------         ---------------------------
 2007.05.03       park do won    Initial creation 
******************************************************************************/

//************************************************************************************
// Description : get site code
// Parameter: none
// Return: site_cd
// Usage: "this.get_site_code()" to other function.
//************************************************************************************
function get_site_code() {
	
	var site_url = document.URL;
	var split_url;
	var site_cd;
	
	try {
		split_url = site_url.split("/");
		site_cd = split_url[3];		
	} catch(e) {
		site_cd = "be";	
	}	
	
	return site_cd;
}