/*
	SPECIFICATIONS PAGE Header Calls - OLED REDESIGN
	AUTHOR: Branden Thompson, Branden.Thompson@am.sony.com
	DATE: August 13, 2008
	
	DEV/MAINTENANCE NOTES:
	
	-	This file was created specifically because of an IE6 caching issue with writing
	 	swf objects into DHTML tabs that could/would be access multiple times from the 
	 	same user, causing the text to not appear on reload.
	  
	-	This file MUST be declared on the landing page page AFTER vaio_functions.js, as this
		is the file that contains the displayFlashHeader() function.
	
	FUNCTION LEGEND:
	
	displayFlashHeader( [id of the DIV to contain the swf object], [width], [height], [header - in HTML 1.0], [text alignment], [x offset], [y offset] );
	
	** for more details, see vaio_functions.js to view more robust function documentation. **
		
*/

function initSpecsHeaders()
{
	displayFlashHeader('videoHeader',250, 25, "<font size='16' color='#66cc00'>VIDEO</font>", 'left', -3, 0);
	displayFlashHeader('inputOutputHeader',250, 25, "<font size='16' color='#66cc00'>INPUTS AND OUTPUTS</font>", 'left', -3, 0);
	displayFlashHeader('audioFeaturesHeader',250, 25, "<font size='16' color='#66cc00'>AUDIO FEATURES</font>", 'left', -3, 0);
	displayFlashHeader('generalFeaturesHeader',250, 25, "<font size='16' color='#66cc00'>GENERAL FEATURES</font>", 'left', -3, 0);
	displayFlashHeader('serviceWarrantyHeader',300, 25, "<font size='16' color='#66cc00'>SERVICE AND WARRANTY INFORMATION</font>", 'left', -3, 0);
	displayFlashHeader('audioSpecHeader',250, 25, "<font size='16' color='#66cc00'>AUDIO</font>", 'left', -3, 0);
	displayFlashHeader('generalSpecHeader',250, 25, "<font size='16' color='#66cc00'>GENERAL</font>", 'left', -3, 0);
	displayFlashHeader('accessoryHeader',300, 25, "<font size='16' color='#66cc00'>SUPPLIED ACCESSORIES</font>", 'left', -3, 0);
	displayFlashHeader('convenienceFeatures',300, 25, "<font size='16' color='#66cc00'>CONVENIENCE FEATURES</font>", 'left', -3, 0);
	displayFlashHeader('videoFeatureHeader',250, 25, "<font size='16' color='#66cc00'>VIDEO FEATURES</font>", 'left', -3, 0);
}

