/*************************************/
/* IAID General Javascript Document  */
/* Last Updated: 06-11-08            */
/* By Alan Agius                     */
/*************************************/

/*Check Resolution                   */
var bodyMainDIV = null;
function checkResolution(){
	if ((screen.width<=1024) && (screen.height<=768)){
		document.getElementById(bodyMainDIV).style.padding="11px";
	}
}

/*Mainpage News Section              */
var imageID = null;
function changeImage(object, item){
	document.getElementById(imageID).src=item;
	document.getElementById(imageID).alt=object;
}

/*Send E-mail                        */
function sendemail(email1, email2, email3, subject){
    parent.location = 'mailto:' + email1 + '@' + email2 + '.' + email3 + '?subject=' + subject;
}