var newwindow;

function poptastic(url, myHeight, myWidth)
{	
	newwindow = window.open(url, 'name', 'height=' + myHeight + ',width=' + myWidth + ',toolbar=no,scrollbars=no');
	if (window.focus) {newwindow.focus()}
}

function print_preview(url)
{	
	newwindow = window.open(url, 'print_preview', 'height=815,width=632,toolbar=no,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}

function scrollable_window(url, title, width, height)
{	
	newwindow = window.open(url, title, 'height=' + height + ',width=' + width + ',toolbar=no,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}

function launch_storybook(lang)
{
	
	var html_link  = "http://www.goaheadgetdirty.com/storybook/storybook.html?sel_lang=" + lang;
	var swf_n = "storybook";
	var swf_w = 780;
	var swf_h = 580;
	var win_f = ",resizable=no,scrollbars=no,menubar=no,toolbar=no,status=no,location=no";

	if(screen.width <= 800)
	{
		
		var win_l = 0;
		var win_t = 0;

	} else {

		var win_l = (screen.width -  swf_w) * 0.5;
		var win_t = (screen.height - swf_h) * 0.5;

	}
	
	win_storybook = window.open( html_link, swf_n, "width=" + swf_w + ",height=" + swf_h + ",top=" + win_t + ",left=" + win_l + win_f );

	if (window.focus)
	{
		win_storybook.focus();
	}

}