function C26800() {
	var dc = "dc" + Math.floor( Math.random() * 1001 );
	var na = "na" + Math.floor( Math.random() * 1001 );
	var em = "em" + Math.floor( Math.random() * 1001 );
	var ty = "ty" + Math.floor( Math.random() * 1001 );
	var ms = "ms" + Math.floor( Math.random() * 1001 );

	document.write("<div class='contact' style='text-align: center'><form style='width: 450px' onSubmit=\"return V26800( '"+na+"' , '"+em+"' , '"+ms+"' );\" action='http://www.inctime.com/contact/' method='post'><input name='"+dc+"' value='1' type='hidden'><table><tr><td style='text-align: right;' width='35%'>Name &nbsp;</td><td width='65%'>&nbsp; <input id='"+na+"' name='"+na+"' type='text'></td></tr><tr><td style='text-align: right;' width='35%'>E-mail &nbsp;</td><td width='65%'>&nbsp; <input id='"+em+"' name='"+em+"' type='text'></td></tr><tr><td style='text-align: right;' width='35%'>Subject &nbsp;</td><td width='65%'>&nbsp; <select name='"+ty+"' id='"+ty+"'><option>Request more information</option><option>Report a problem</option><option>Link building</option><option>Other</option></select></td></tr><tr><td colspan='2'>Message:<br><textarea name='"+ms+"' id='"+ms+"'></textarea></td></tr><tr><td colspan='2' style='text-align: center;'><input value=' Send ' type='submit' style='width: 70px'></td></tr></table></form></div>");
}

function checkEmail( text ) {
	return /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test( text );
}

function V26800( na , em , ms ) {
	if( ! document.getElementById( na ).value.length ) {
		window.alert( "Please provide your name" );
		document.getElementById( na ).focus();
		return false;
	}
	
	if( ! checkEmail( document.getElementById( em ).value ) ) {
		window.alert( "Please provide your email" );
		document.getElementById( em ).focus();
		return false;
	}
	
	if( ! document.getElementById( ms ).value.length ) {
		window.alert( "Please enter your message" );
		document.getElementById( ms ).focus();
		return false;
	}
	
	return true;
}

