﻿//
// Copyright © 2011, ayondo GmbH.
// All rights reserved.
// http://www.ayondo.com
//
// Redistribution and use in source and binary forms, with or without
// modification, is strictly prohibited.
//


function chkDOM(theVal) {
    if (document.getElementById(theVal) != null) {
        return true;
    }
    else {
        return false;
    }
}



