if (screen.width > 1200) {document.write('<LINK rel="stylesheet" href="/etc/7sp/styles_x.css" type="text/css">')}	
//comment form check function 
function formCheck() 
{
	if (document.commform.Name.value == "") 
 	        { alert("Please Enter Your Name."); return false; }
	if (document.commform.EMail.value.indexOf("@") == -1 || document.commform.EMail.value == "") 
       		{ alert("Please Enter a proper email address."); return false; }
	if (document.commform.CTopic.value == "") 
	        { alert("Please Enter Comment Topic."); return false; }
	document.commform.submit()
}
//window open
function OpenWin(url) 
{
	window.open(url, "archwin", "width=480,height=340,status=yes,resizable=yes")
}
