//just a check..//alert ("hello");// pop-up window function, go get 'em...// console = well, kind of a happy medium i guess...// fixed = nothing, no scrollbars, no resize, nada...// elastic = you want options? you got 'em...var newWin = null;function popUp(strURL, strType, strHeight, strWidth) {if (newWin != null && !newWin.closed)newWin.close();var strOptions="";if (strType=="console")strOptions="resizable,height="+strHeight+",width="+strWidth;if (strType=="fixed")strOptions="resizable=no,scrollbars=no,status=no,height="+strHeight+",width="+strWidth;if (strType=="elastic")strOptions="toolbar,menubar,scrollbars,"+"resizable,location,height="+strHeight+",width="+strWidth;newWin = window.open(strURL, 'newWin', strOptions);newWin.focus();}//This would be the link then... <a href="http://www.apple.com" onclick="popUp(this.href,'console',400,400);return false;" target="_blank">This is my link</a>// my infamous image-switcher...// laadee-freakin' daa...function imageSwitch(pic) {	eval("document.getElementById('sketch').style.backgroundImage='" + pic.options[pic.selectedIndex].value +"';");}