function ForumJump(URL) {
if (URL.options[URL.selectedIndex].value != "") self.location.href = URL.options[URL.selectedIndex].value;
return true;}
function openWin(theURL,winName,features) {
window.open(theURL,winName,features);}
function OpenPreviewWindow(targetPage, formName){
now = new Date  
openWin('','preview','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=680,height=400')
formName.action = targetPage + "?ID=" + now.getTime();
formName.target = "preview";
formName.submit();}
function resizeImage(thisimage) {
if (thisimage.width > 350) {
thisimage.width = 350;
thisimage.style.cursor='hand';}}
var ie=document.all
var ns=document.layers
var ns6=document.getElementById&&!document.all
function closepreview(){
crossobj.style.visibility="hidden"}
var nsx,nsy,nstemp
function drag_dropns(name){
temp=eval(name)
temp.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)
temp.onmousedown=gons
temp.onmousemove=dragns
temp.onmouseup=stopns}
function gons(e){
temp.captureEvents(Event.MOUSEMOVE)
nsx=e.x
nsy=e.y}
function dragns(e){
temp.moveBy(e.x-nsx,e.y-nsy)
return false}
function stopns(){
temp.releaseEvents(Event.MOUSEMOVE)}
function drag_drop(e){
if (ie&&dragapproved){
crossobj.style.left=tempx+event.clientX-offsetx
crossobj.style.top=tempy+event.clientY-offsety}
else if (ns6&&dragapproved){
crossobj.style.left=tempx+e.clientX-offsetx
crossobj.style.top=tempy+e.clientY-offsety}
return false}
function initializedrag(e){
if (ie&&event.srcElement.id=="drag"||ns6&&e.target.id=="drag"){
offsetx=ie? event.clientX : e.clientX
offsety=ie? event.clientY : e.clientY
tempx=parseInt(crossobj.style.left)
tempy=parseInt(crossobj.style.top)
dragapproved=true
document.onmousemove=drag_drop}}
document.onmousedown=initializedrag
document.onmouseup=new Function("dragapproved=false")
