window.addEvent('domready', function() {
	if ($defined($('scan_report_input'))) {
    	$('scan_report_input').addEvent('click', function(event) {
	    	if (document.scan_reports.report.value == "Paste your shit here ...\n") {
	    		document.scan_reports.report.value = '';
    		}
    	});
	}
});

function scan_validate() {
	if (document.scan_reports.report.value == '' || document.scan_reports.report.value == "Paste your shit here ...\n") {
		alert ("Shit ain't gonne be filled out magically, paste your report in");
		return false;
	}
}
