var inc = {
start: function() {
document.open();
document.write('
');
document.close();
this.loadSupportDevices();
},
loadSupportDevices: function() {
var op = document.getElementById("selectSupportedDevicesTable").value;
var scriptTag = document.createElement('script');
scriptTag.setAttribute('type', 'text/javascript');
scriptTag.setAttribute('src', 'http://dl.wewm.com/milkfish/script/includeSupportedDevicesTable.do?sp=tsc&sv=mtycoon&op=' + op);
document.getElementsByTagName('head')[0].appendChild(scriptTag);
}
}
inc.start();