// JavaScript Document

function toDesktop(sUrl,sName)
{ 
	try 
	{ 
		var WshShell = new ActiveXObject("WScript.Shell"); 
		var oUrlLink = WshShell.CreateShortcut(WshShell.SpecialFolders("Desktop") + "\\" + sName + ".url"); 
		oUrlLink.TargetPath = sUrl; 
		oUrlLink.Save(); 
	} 
	catch(e) 
	{ 
		alert("当前IE安全级别不允许自动操作！\n\n请直接下载本站链接到桌面！"); 
		location.href='http://news.lzrc365.com/desktop.php';
	} 
} 

