// JavaScript Document

function printArticle(mainUrl, identifier) {
	window.open(mainUrl+"print.php?identifier="+identifier,"Print","height=600,width=800,resizable=yes,scrollbars=yes");
}
function printJob(mainUrl, identifier) {
	window.open(mainUrl+"print_job.php?identifier="+identifier,"Print","height=600,width=800,resizable=yes,scrollbars=yes");
}
function printDirectory(mainUrl, identifier) {
	window.open(mainUrl+"print_directory.php?identifier="+identifier,"Print","height=600,width=800,resizable=yes,scrollbars=yes");
}


function emailArticle(mainUrl, identifier) {
	window.open(mainUrl+"email.php?identifier="+identifier,"Email","height=200,width=400,resizable=no,scrollbars=no");
}
function emailJob(mainUrl, identifier) {
	window.open(mainUrl+"email_job.php?identifier="+identifier,"Email","height=200,width=400,resizable=no,scrollbars=no");
}
function emailDirectory(mainUrl, identifier) {
	window.open(mainUrl+"email_directory.php?identifier="+identifier,"Email","height=200,width=400,resizable=no,scrollbars=no");
}

function change_input_text(display_text, id){
	var get_value = document.getElementById(id).value;
	if(get_value == "" || display_text == ""){
		document.getElementById(id).value = display_text;
		return true;
	}else{
		return false;
	}
}