/* If you use this script, you must include this header
** Developed by http://www.getusjobs.com, the largest and coolest job site in North America.
** Sponsored by http://www.usanalyst.com, the site for tech articles and forums.
*/
	function verifyRetype(v1, v2, n1) {
		var s1=document.getElementById(v1).value;
		var s2=document.getElementById(v2).value;
		if (s2!=s1) {
			alert (n1);
			document.getElementById(v2).focus();
		}		
		return;
	}
