/**
 * This utility class represents the operating systems used of the user agent.
 * 
 * @author Kem Apak
 */
function Os() {
}

/**
 * This class member represents the Windows OS.
 * 
 * @author Kem Apak
 */
Os.WIN = 'win';

/**
 * This class member represents the Windows XP OS.
 * 
 * @author Kem Apak
 */
Os.WINXP = 'win xp';

/**
 * This class member represents the Windows 2000 OS.
 * 
 * @author Kem Apak
 */
Os.WIN2K = 'win 2000';

/**
 * This class member represents the Windows ME OS.
 * 
 * @author Kem Apak
 */
Os.WINME = 'win me';

/**
 * This class member represents the Windows 98 OS.
 * 
 * @author Kem Apak
 */
Os.WIN98 = 'win 98';

/**
 * This class member represents the Windows 95 OS.
 * 
 * @author Kem Apak
 */
Os.WIN95 = 'win 95';

/**
 * This class member represents the Mac OS.
 * 
 * @author Kem Apak
 */
Os.MAC = 'mac';

/**
 * This class member represents the Mac OS8.
 * 
 * @author Kem Apak
 */
Os.MACOS8 = 'mac os8';

/**
 * This class member represents the Mac OS9.
 * 
 * @author Kem Apak
 */
Os.MACOS9 = 'mac os9';

/**
 * This class member represents the Mac OSX.
 * 
 * @author Kem Apak
 */
Os.MACOSX = 'mac osx';

/**
 * This class member represents the unknown OS.
 * 
 * @author Kem Apak
 */
Os.UNKNOWN = 'unknown';
