// JavaScript Document

// Site Specific JS Code - For Germany

// Order Processing Credit Check - Please Wait pop-up
var processing={
ajax:function(st)
	{
		this.show('load');
	},
show:function(el)
	{
		this.getID(el).style.display='';
	},
getID:function(el)
	{
		return document.getElementById(el);
	}
}

// Order Processing Credit Check - Bkg Opacity Layer
var opacity={
ajax:function(st)
	{
		this.show('opacityLayer');
	},
show:function(el)
	{
		this.getID(el).style.display='';
	},
getID:function(el)
	{
		return document.getElementById(el);
	}
}

// Scrollable Pop-up Window
function spawn_window_scrollable(location, height, width) {
	window.open(location, "thisWindow", "width=" + width + ",height=" + height + ",location=no,menubar=no,resizable=yes,scrollbars=yes");
}
