// JavaScript Document
function Templates()
{
	
}
Templates.prototype.forgotPasswordTemplate = function()
{
	var str = '<div style="width:300px; padding:10px; border:#19BFF3 2px solid; background:#49D5FA;">';
	str += '<h2 style="font-size:18px; font-weight:bold; padding:0 0 15px 15px; text-align:left; color:#FFFFFF;">Forgot Password</h2>';
	str += '<div class="whitetext" style="font-weight:bold;">';
	str += '<p style="padding:2px 0 2px 0; margin:0px; width:100px; float:left;">Username:</p>';
	str += '<p style="padding:0 0 2px 0px; margin:0px; width:170px; height:auto; float:left;"><input type="text" name="forgot_username" id="forgot_username" class="form" style=" width:150px;" title="Enter Username" /></p>';
	str += '<p style="padding:2px 0 2px 0; margin:0px; width:100px; float:left;">Email:</p>';
	str += '<p style="padding:0 0 2px 0px; margin:0px; width:170px; height:auto; float:left;" ><input type="text" name="forgot_email" id="forgot_email" class="form" style=" width:150px;" title="Enter Email" /></p>';
	str += '<div style="clear:both"></div>';
	str += '</div>';
	str += '<p>&nbsp;</p>';
	str += '<div>';
	str += '<div align="center">';
	str += '<p><input name="send_my_password" type="button" class="button2" id="send_my_password" style="margin-top:10px;" value="Send My Password"  border="0" /><input type="button" name="cancel" id="cancel" value="Cancel" class="button3" border="0" /></p>';
	str += '</div>';
	str += '</div>';
	str += '</div>';
	
	return str;
}