﻿//#region Copyright Zerone Consulting Private Limited
//
// All rights are reserved. Reproduction or transmission in whole or in part, in
// any form or by any means, electronic, mechanical or otherwise, is prohibited
// without the prior written consent of the copyright owner.
//
// Filename        : UserRegistration.js
// Purpose         :  UserRegistration
// Creation Date   :11/Aug/2009
// Author          : Abdul Gafoor
//
// Change History  :
// Changed by      :                                     Date : 
// Purpose         :
//
//#endregion


// Purpose  : Sohw User Registration FOrm
// Auther   : Abdul Gafoor
// Created  : 11/Aug/2009
function ShowMessage()
{  
  $('#window').jqm({overlay: 88, modal: true, trigger: false});
  show(); 
    return false;    
}
function ValidateUserInputs()
{
    if (document.getElementById("txtFirstName").value == "")
    { 
         document.getElementById("lblReqName").style.color="red";               
    }
}