﻿// JScript File
function DoRollColor(t, pos, which)
	{
	if (which == 1)
		{
		inCol = "#F0F0EF"
		outCol = "White"
		}
	else if (which == 2)
		{
		inCol = "White"
		outCol = "#F0F0EF"
		}
		
	if (pos == "In")
		{
		t.style.backgroundColor=inCol
		t.style.fontWeight="bold"
		}
	else
		{
		t.style.backgroundColor=outCol
		t.style.fontWeight="normal"
		}
	}


function ShowPricing(iid)
	{
	url = "ShowPricing.asp?ImageID="+iid
	
	wind=window.open (url,"ImagePricing","width=600px, Height=350px, top=15, left=15, title scrollbars=yes resizable=yes");
	wind.focus();
	}	
