	var width = document.body.clientWidth;
	var tag_css = document.createElement('link');
	tag_css.rel = 'stylesheet';

	if  (width<1240)
	{
		tag_css.href = '/css/new/resize.css'; 
		
	}
	else if  (width<1600 && width>=1240)
	{
		tag_css.href = '/css/new/resize1.css';		
	} 
	else if  (width>=1600)
	{
		tag_css.href = '/css/new/resize2.css';		
	}	
	
	tag_css.type = 'text/css';
	var tag_head = document.getElementsByTagName('head');
	tag_head[0].appendChild(tag_css);
