function SendNews2Friends(strID, intWidth, intHeight)
{
	if((typeof(intWidth) == "undefined")||(intWidth == null))
		intWidth = 600;

	if((typeof(intHeight) == "undefined")||(intHeight == null))
		intHeight = 400;

	var intLeft = (screen.width) ? (screen.width - intWidth) / 2 : 0;
	var intTop = (screen.height) ? (screen.height - intHeight) / 2 : 0;

	var OpenWindow;
	strAttrs = 'height=' + intHeight + ',width=' + intWidth + ',top=' + intTop + ',left=' + intLeft + ', resizable=yes, toolbar=yes , scrollbars=yes , status=no';

	OpenWindow = window.open("/sendnews.php?id=" + strID , "sendnews" , strAttrs);
	OpenWindow.focus();
}

function PrintNews(strID, intWidth, intHeight)
{
	if((typeof(intWidth) == "undefined")||(intWidth == null))
		intWidth = 600;

	if((typeof(intHeight) == "undefined")||(intHeight == null))
		intHeight = 400;

	var intLeft = (screen.width) ? (screen.width - intWidth) / 2 : 0;
	var intTop = (screen.height) ? (screen.height - intHeight) / 2 : 0;

	var OpenWindow;
	strAttrs = 'height=' + intHeight + ',width=' + intWidth + ',top=' + intTop + ',left=' + intLeft + ', resizable=yes, toolbar=yes , scrollbars=yes , status=no';

	OpenWindow = window.open("/printnews.php?id=" + strID , "printnews" , strAttrs);
	OpenWindow.focus();
}

function setHomepage()
{
 if (document.all)
    {
        document.body.style.behavior='url(#default#homepage)';
  			document.body.setHomePage('http://www.bangkokpost.com');
    }
    else if (window.sidebar)
    {
    if(window.netscape)
    {
         try
   {  
            netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");  
         }  
         catch(e)  
         {  
    alert("this action was aviod by your browser,if you want to enable,please enter about:config in your address line,and change the value of signed.applets.codebase_principal_support to true");  
         }
    } 
    var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components. interfaces.nsIPrefBranch);
    prefs.setCharPref('browser.startup.homepage','http://www.bangkokpost.com');
 }
}


function maintenance()
{
	//if((typeof(intWidth) == "undefined")||(intWidth == null))
		intWidth = 580;

	//if((typeof(intHeight) == "undefined")||(intHeight == null))
		intHeight = 275;

	var intLeft = (screen.width) ? (screen.width - intWidth) / 2 : 0;
	var intTop = (screen.height) ? (screen.height - intHeight) / 2 : 0;

	var OpenWindow;
	strAttrs = 'height=' + intHeight + ',width=' + intWidth + ',top=' + intTop + ',left=' + intLeft + ', resizable=yes, toolbar=yes , scrollbars=yes , status=no';

	OpenWindow = window.open("/maintenance.html" , "maintenance" , strAttrs);
	OpenWindow.focus();
}
