function printSpecial(divID)
{
    if (document.getElementById != null)
    {
		var html = '<HTML>\n<HEAD>\n';
		
        if (document.getElementsByTagName != null)
        {
            var headTags = document.getElementsByTagName("head");
            if (headTags.length > 0)
                html += headTags[0].innerHTML;
        }
       
        html += '\n</HE' + 'AD>\n<BODY>\n<img src="images/npban.png" border=0>\n<hr>\n<div style="text-align:justify">\n';
       
        var printReadyElem = document.getElementById(divID);
       						 
        if (printReadyElem != null)
        {
                html += printReadyElem.innerHTML;
        }
        else
        {
            alert("There is nothing to print");
            return;
        }
           
        html += '\n</div>\n<hr>\nNews from MPS<br>http://www.police.gov.mv<br>© Maldives Police Service 2008</BO' + 'DY>\n</HT' + 'ML>';
       
        var printWin = window.open("","printSpecial");
        printWin.document.open();
        printWin.document.write(html);
        printWin.document.close();
            printWin.print();
    }
    else
    {
        alert("N/A.");
    }
}

function clearInput(field_id, term_to_clear) {
	
	if (document.getElementById(field_id).value == term_to_clear ) {
		document.getElementById(field_id).value = '';
	}
	
	else if (document.getElementById(field_id).value == '' ) {
		document.getElementById(field_id).value = term_to_clear;
	}
}