var screenW = screen.width;
var screenH = screen.height;

function bar(id) {
  parent.location.href = "index.php?id=" + id + "&main=" + id;
}

function menu(id, data, type) {

  if (type == "0") { parent.location.href = (data); }
  else if (type == "1") {
    new_url = "http://" + data; 
    new_window = window.open(new_url);
  }
  else if (type == "2") {
    new_url = "http://www.wika.com.au/" + data; 
    new_window = window.open(new_url);
    new_window.moveTo(0, 0);
    new_window.resizeTo(screenW, screenH);
  }
}
