Array.prototype.inArray = function (value) { var i; for (i=0; i < this.length; i++) { if (this[i] == value) { return true; } } return false; }; Array.prototype.inArrayStrict = function (value) { var i; for (i=0; i < this.length; i++) { if (this[i] === value) { return true; } } return false; }; function swapMainMenu( id, selected ) { menu_img = document.getElementById(id); if( selected ) { menu_img.src = 'http://nikitoss.com/i/'+id+'_act.gif'; } else { menu_img.src = 'http://nikitoss.com/i/'+id+'.gif'; } } function openPic(image, width, height) { var win; if( win ) { win.close(); } win = window.open( '', 'win', 'location=0, toolbar=0, menubar=0, scrollbars=yes, height='+height+', width='+width+', status=0' ); win.document.write( 'Nikita' ); win.document.write( '' ); win.document.write( '
' ); win.document.write( '' ); win.document.close(); } function openGallery(url,w,h) { var winGal; if( winGal ) { winGal.close(); } winGal = window.open( 'http://nikitoss.com' + url, 'winGal', 'location=0, toolbar=0, menubar=0, scrollbars=no, height='+(h?h:600)+', width='+(w?w:530)+', status=0' ); }