﻿try {
    var x = parent.location.href;
    if (x.indexOf('buy.asp') >= 0) parent.location = 'http://www.rosh-dyo.co.il/index.asp';
} catch (ex) { }

function validateNumKey ()
{
 var inputKey =  event.keyCode;
 var returnCode = true;
 
 if ( inputKey > 47 && inputKey < 58 ) // numbers
 {
  return;
 }
 else
 {
  returnCode = false;
  event.keyCode = 0;
 }
 event.returnValue = returnCode;
}
function resizeIframe() {
    try {
        i = parent.document.getElementById(window.name);
        iHeight = document.body.scrollHeight;
        i.style.height = iHeight + 5 + "px";
    } catch (ex) { }
}
function checkView() {
    try {
        if (self.location == top.location) {
            self.location = 'index.asp';
        }
    } catch (ex) { }
}


