﻿function popUp(url) {
    newwindow = window.open(url, 'name', 'height=800,width=800,resizable=1,scrollbars=1');
    if (window.focus) { newwindow.focus() }
    return false;
}


function Test()
{
    alert('Test');
}

function Redirect(url)
{
	window.location.href = url;
}

function ShowOrHide(itemId)
{
	if(document.getElementById(itemId).style.display == 'none')
	{
		document.getElementById(itemId).style.display = '';
	}
	else
	{
		document.getElementById(itemId).style.display = 'none';
	}
}

function HideItem(itemId)
{	
	document.getElementById(itemId).style.display = 'none';		
}

function ShowItem(itemId)
{
	document.getElementById(itemId).style.display = '';	
}        

function ScrollUp(controlID)
{
    var scrollSpeed = 50;
    
    document.getElementById(controlID).scrollTop -= scrollSpeed;
}

function ScrollDown(controlID)
{
    var scrollSpeed = 50;
    
    document.getElementById(controlID).scrollTop += scrollSpeed;
}





