/**
 * Detect Plugin and redirect appropriately
 */

if(canDetectPlugins()) {
	if(detectQuickTime()) {
		window.location = "./cookie/plugin/QT";
	} else {
		window.location = "./cookie/plugin/IPIX";
	}
} else {
	window.location = "./cookie/plugin/NONE";
}

