// JavaScript Document
<!--
function openWithSelfMain(url,name,width,height) {
var options = "width=" + width + ",height=" + height + "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,copyhistory=no";

new_window = window.open(url, name, options);
window.self.name = "main";
new_window.moveTo(((screen.availWidth/2)-(width/2)),((screen.availHeight/2)-(height/2)))
new_window.focus();
}

//-->
<!--

var bookmarkurl="http://www.artin.biz/default.asp" 

var bookmarktitle="---Arvin.biz---" 

function addbookmark(){ 

if (document.all) 

window.external.AddFavorite(bookmarkurl,bookmarktitle) 

}
